void-packages/srcpkgs/bluez/template

58 lines
1.5 KiB
Text
Raw Normal View History

# Template file for 'bluez'
pkgname=bluez
2014-12-29 22:29:44 +00:00
version=5.27
2014-11-16 21:01:05 +00:00
revision=1
build_style=gnu-configure
configure_args="--with-udevdir=/usr/lib/udev
--enable-pie --enable-threads --enable-library"
hostmakedepends="automake libtool pkg-config flex"
2014-10-10 05:30:00 +00:00
makedepends="libglib-devel libudev-devel dbus-devel
cups-devel libical-devel readline-devel>=6.3"
conf_files="/etc/bluetooth/main.conf"
short_desc="Bluetooth tools and daemons"
maintainer="Juan RP <xtraeme@gmail.com>"
2011-06-11 06:35:45 +00:00
homepage="http://www.bluez.org/"
license="GPL-2"
distfiles="${KERNEL_SITE}/bluetooth/$pkgname-$version.tar.xz"
2014-12-29 22:29:44 +00:00
checksum=fbf33cebc76f8c81f28f0d67c71a8a1ec4b04b087460ec7353f7e0c207a1f981
# Package build options
build_options="systemd"
if [ "$build_option_systemd" ]; then
configure_args+=" --enable-systemd --with-systemdsystemunitdir=/usr/lib/systemd/system"
makedepends+=" systemd-devel"
else
configure_args+=" --disable-systemd"
fi
pre_configure() {
autoreconf -fi
}
post_install() {
vinstall ${wrksrc}/src/main.conf 644 etc/bluetooth
2014-10-13 10:50:01 +00:00
vsv bluetoothd
}
libbluetooth_package() {
short_desc="Library to use the Bluez Linux Bluetooth Stack"
pkg_install() {
2013-06-22 06:01:02 +00:00
vmove "usr/lib/libbluetooth.so.*"
}
}
libbluetooth-devel_package() {
2013-11-20 16:52:55 +00:00
depends="libbluetooth>=${version}_${revision}"
short_desc="Development files to use the BlueZ Linux Bluetooth library"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
2013-06-22 06:01:02 +00:00
vmove "usr/lib/*.so"
}
}
2013-12-16 05:47:11 +00:00
bluez-cups_package() {
short_desc="CUPS printer backend for Bluetooth printers"
pkg_install() {
vmove usr/lib/cups/backend/bluetooth
}
}