diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-05-03 20:33:13 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-05-03 20:33:13 (GMT) |
commit | 117e8d1604d451e12e5f5c32f5a8424d3dd74ca7 (patch) | |
tree | 6333995bc19680138b6487d9b6c5e4ca0e5edb6f /abs/extra-testing/bluez-firmware | |
parent | 13d32c0bfce27438b957eff503bb88e84b2d822c (diff) | |
download | linhes_pkgbuild-117e8d1604d451e12e5f5c32f5a8424d3dd74ca7.zip linhes_pkgbuild-117e8d1604d451e12e5f5c32f5a8424d3dd74ca7.tar.gz linhes_pkgbuild-117e8d1604d451e12e5f5c32f5a8424d3dd74ca7.tar.bz2 |
Initial inclusion of bluetooth support into LinHES.
Diffstat (limited to 'abs/extra-testing/bluez-firmware')
-rw-r--r-- | abs/extra-testing/bluez-firmware/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/abs/extra-testing/bluez-firmware/PKGBUILD b/abs/extra-testing/bluez-firmware/PKGBUILD new file mode 100644 index 0000000..64466c1 --- /dev/null +++ b/abs/extra-testing/bluez-firmware/PKGBUILD @@ -0,0 +1,23 @@ +# Maintainer: Geoffroy Carrier <geoffroy@archlinux.org> +# Contributor: Giovanni Scafora <giovanni@archlinux.org> +# Contributor: Stefano Zamprogno <stefano.zamprogno@gmail.com> + +pkgname=bluez-firmware +pkgver=1.2 +pkgrel=4 +pkgdesc="Firmware for Broadcom BCM203x Blutonium devices" +url="http://www.bluez.org/" +arch=('i686' 'x86_64') +license=('GPL2') +depends=() +source=("http://bluez.sf.net/download/$pkgname-$pkgver.tar.gz") + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --libdir=/lib || return 1 + make || return 1 + make DESTDIR="$pkgdir" install || return 1 +} + +md5sums=('1cc3cefad872e937e05de5a0a2b390dd') |