blob: b7718f6622dcec2d0ee829cdfa297a6d2a8ac1cf (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
# Maintainer: Brian Bidulock <bidulock@openss7.org>
# Contributor: Juan Diego Tascon
# Contributor: Swift Geek
pkgname=bluez-git
_pkgname=bluez
pkgver=5.63.r15.geb5c7518d
pkgrel=1
epoch=1
pkgdesc="Libraries and tools for the Bluetooth protocol stack"
url="http://www.bluez.org/"
arch=('i686' 'x86_64')
license=('GPL2')
depends=('libical' 'libdbus' 'glib2' 'alsa-lib' 'ell' 'json-c')
optdepends=('cups: CUPS backend')
makedepends=('git' 'python-docutils')
conflicts=($_pkgname
$_pkgname-utils
$_pkgname-libs
$_pkgname-cups
$_pkgname-hid2hci
$_pkgname-plugins
$_pkgname-hcidump
'obexd-client'
'obexd-server')
provides=(libbluetooth.so
$_pkgname=${pkgver%%.r*}-${pkgrel}
$_pkgname-utils=${pkgver%%.r*}-${pkgrel}
$_pkgname-libs=${pkgver%%.r*}-${pkgrel}
$_pkgname-cups=${pkgver%%.r*}-${pkgrel}
$_pkgname-hid2hci=${pkgver%%.r*}-${pkgrel}
$_pkgname-plugins=${pkgver%%.r*}-${pkgrel})
backup=('etc/bluetooth/main.conf')
source=("$pkgname::git://git.kernel.org/pub/scm/bluetooth/bluez.git"
bluetooth.modprobe)
md5sums=('SKIP'
'671c15e99d7154c2df987b71c5851b3d')
pkgver() {
cd $pkgname
git describe --tags --long|sed -r 's,^[^0-9],,;s,([0-9]*-g),r\1,;s,[-_],.,g'
}
prepare() {
cd $pkgname
./bootstrap
}
build() {
cd $pkgname
./configure \
--prefix=/usr \
--mandir=/usr/share/man \
--sysconfdir=/etc \
--localstatedir=/var \
--libexecdir=/usr/lib \
--with-dbusconfdir=/usr/share \
--enable-external-ell \
--enable-btpclient \
--enable-midi \
--enable-sixaxis \
--enable-mesh \
--enable-hid2hci \
--enable-experimental \
--enable-manpages \
--enable-library # this is deprecated
make
}
check() {
cd $pkgname
# tests segfault and hang
# make check || /bin/true # https://bugzilla.kernel.org/show_bug.cgi?id=196621
}
package() {
cd $pkgname
make DESTDIR="${pkgdir}" install
# add missing toosl FS#41132, FS#41687, FS#42716
for f in `find tools/ -type f -perm -755`; do
install -Dm755 "$f" "${pkgdir}/usr/bin/$(basename $f)"
done
install -Dm644 src/main.conf "${pkgdir}/etc/bluetooth/main.conf"
install -Dm644 ${srcdir}/bluetooth.modprobe "${pkgdir}/usr/lib/modprobe.d/bluetooth-usb.conf"
}
# vim:set ts=2 sw=2 et:
|