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-hcidump | |
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-hcidump')
-rw-r--r-- | abs/extra-testing/bluez-hcidump/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/abs/extra-testing/bluez-hcidump/PKGBUILD b/abs/extra-testing/bluez-hcidump/PKGBUILD new file mode 100644 index 0000000..25e0fdf --- /dev/null +++ b/abs/extra-testing/bluez-hcidump/PKGBUILD @@ -0,0 +1,22 @@ +# Maintainer: Geoffroy carrier <geoffroy@archlinux.org> +# Contributor: Giovanni Scafora <giovanni@archlinux.org> +# Contributor: Joerie de Gram <j.de.gram@gmail.com> + +pkgname=bluez-hcidump +pkgver=1.42 +pkgrel=1 +pkgdesc="Bluetooth HCI package analyzer" +url="http://www.bluez.org/" +arch=('i686' 'x86_64') +license=('GPL2') +depends=('bluez>=4.18') +source=(http://bluez.sf.net/download/$pkgname-$pkgver.tar.gz) + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr --mandir=/usr/share/man || return 1 + make || return 1 + make DESTDIR="$pkgdir" install || return 1 +} + +md5sums=('5704737aaf72104eeaf77335218a1827') |