59 lines
1.6 KiB
Text
59 lines
1.6 KiB
Text
# Template file for 'bluez'
|
|
pkgname=bluez
|
|
version=5.24
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="--with-udevdir=/usr/lib/udev
|
|
--enable-pie --enable-threads --enable-library"
|
|
hostmakedepends="automake libtool pkg-config flex"
|
|
makedepends="libglib-devel libudev-devel dbus-devel
|
|
cups-devel libical-devel readline-devel>=6.3"
|
|
conf_files="/etc/bluetooth/main.conf"
|
|
replaces="runit-void<20141013_2"
|
|
short_desc="Bluetooth tools and daemons"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://www.bluez.org/"
|
|
license="GPL-2"
|
|
distfiles="${KERNEL_SITE}/bluetooth/$pkgname-$version.tar.xz"
|
|
checksum=e870c5fba0bf3496856fc720e2d217856fcf40b59829f8cc0c05902ebb9fb837
|
|
|
|
# Package build options
|
|
build_options="systemd"
|
|
|
|
if [ "$build_option_systemd" ]; then
|
|
configure_args+=" --enable-systemd --with-systemdsystemunitdir=/usr/lib/systemd/system"
|
|
makedepends+=" systemd-devel"
|
|
systemd_services="bluetooth.service true"
|
|
else
|
|
configure_args+=" --disable-systemd"
|
|
fi
|
|
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
}
|
|
post_install() {
|
|
vinstall ${wrksrc}/src/main.conf 644 etc/bluetooth
|
|
vsv bluetoothd
|
|
}
|
|
|
|
libbluetooth_package() {
|
|
short_desc="Library to use the Bluez Linux Bluetooth Stack"
|
|
pkg_install() {
|
|
vmove "usr/lib/libbluetooth.so.*"
|
|
}
|
|
}
|
|
libbluetooth-devel_package() {
|
|
depends="libbluetooth>=${version}_${revision}"
|
|
short_desc="Development files to use the BlueZ Linux Bluetooth library"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|
|
bluez-cups_package() {
|
|
short_desc="CUPS printer backend for Bluetooth printers"
|
|
pkg_install() {
|
|
vmove usr/lib/cups/backend/bluetooth
|
|
}
|
|
}
|