contrib/bluez/Pkgfile

32 lines
1.0 KiB
Plaintext
Raw Normal View History

2019-08-24 00:04:22 +02:00
# Description: Bluetooth libraries and utilities
2020-06-01 17:45:48 +02:00
# URL: http://www.bluez.org/
2019-08-24 00:04:22 +02:00
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: alsa-lib dbus glib
name=bluez
2021-04-10 00:15:37 +02:00
version=5.58
2019-08-24 00:04:22 +02:00
release=1
source=(https://mirrors.edge.kernel.org/pub/linux/bluetooth/bluez-$version.tar.xz
2020-02-16 17:10:57 +01:00
bluetoothd)
2019-08-24 00:04:22 +02:00
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 \
2019-08-24 00:04:22 +02:00
--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
2019-08-24 00:04:22 +02:00
rm -rf $PKG/usr/share/man/man1
}