32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
# Description: Bluetooth libraries and utilities
|
|
# URL: http://www.bluez.org/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: alsa-lib dbus glib
|
|
|
|
name=bluez
|
|
version=5.55
|
|
release=1
|
|
source=(https://mirrors.edge.kernel.org/pub/linux/bluetooth/bluez-$version.tar.xz
|
|
bluetoothd)
|
|
|
|
build() {
|
|
cd bluez-$version
|
|
|
|
[[ -e /usr/lib/cups ]] && PKGMK_BLUEZ+=" --enable-cups" || PKGMK_BLUEZ+=" --disable-cups"
|
|
[[ -e /usr/lib/pkgconfig/libical.pc ]] && PKGMK_BLUEZ+=" --enable-obex" || PKGMK_BLUEZ+=" --disable-obex"
|
|
|
|
./configure $PKGMK_BLUEZ \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--libexecdir=/usr/lib \
|
|
--enable-{a2dp,experimental,library,midi,tools} \
|
|
--disable-systemd
|
|
make
|
|
make DESTDIR=$PKG install
|
|
install -D -m 0644 src/main.conf $PKG/etc/bluetooth/main.conf
|
|
install -D -m 0755 $SRC/bluetoothd $PKG/etc/rc.d/bluetoothd
|
|
[[ -e /usr/lib/pkgconfig/libical.pc ]] && install -D -m 0755 tools/obexctl $PKG/usr/lib/bluetooth/obexctl
|
|
rm -rf $PKG/usr/share/man/man1
|
|
}
|