diff options
Diffstat (limited to 'testing')
-rw-r--r-- | testing/bluez-hcidump/APKBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/bluez-hcidump/APKBUILD b/testing/bluez-hcidump/APKBUILD new file mode 100644 index 000000000..0ee37d683 --- /dev/null +++ b/testing/bluez-hcidump/APKBUILD @@ -0,0 +1,25 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=bluez-hcidump +pkgver=1.42 +pkgrel=0 +pkgdesc="Bluetooth HCI package analyzer" +url="http://www.bluez.org/" +license="GPL2" +depends= +makedepends="bluez-dev" +subpackages="$pkgname-doc" +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 +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" install || return 1 +} +md5sums="5704737aaf72104eeaf77335218a1827 bluez-hcidump-1.42.tar.gz" |