blob: dea82e7586eb3e627c0fa43b9d377f03ba888473 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=bluez-hcidump
pkgver=2.4
pkgrel=0
pkgdesc="Bluetooth HCI package analyzer"
url="http://www.bluez.org/"
arch="all"
license="GPL2"
depends=
makedepends="bluez-dev"
subpackages="$pkgname-doc"
source="http://www.kernel.org/pub/linux/bluetooth/bluez-hcidump-$pkgver.tar.gz"
_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$_builddir"
./configure --prefix=/usr \
--mandir=/usr/share/man \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
}
md5sums="d39833de0ed26bddf784e9580b6f33c4 bluez-hcidump-2.4.tar.gz"
|