51 lines
1.3 KiB
Bash
51 lines
1.3 KiB
Bash
# Template file for 'bluez'
|
|
pkgname=bluez
|
|
version=5.50
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="--with-udevdir=/usr/lib/udev --disable-systemd
|
|
--enable-sixaxis --enable-threads --enable-library"
|
|
hostmakedepends="automake flex libtool pkg-config"
|
|
makedepends="cups-devel eudev-libudev-devel libglib-devel libical-devel
|
|
readline-devel"
|
|
short_desc="Bluetooth tools and daemons"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-2.0-or-later, LGPL-2.1-or-later"
|
|
homepage="http://www.bluez.org/"
|
|
distfiles="${KERNEL_SITE}/bluetooth/$pkgname-$version.tar.xz"
|
|
checksum=5ffcaae18bbb6155f1591be8c24898dc12f062075a40b538b745bfd477481911
|
|
conf_files="/etc/bluetooth/main.conf"
|
|
system_groups="bluetooth"
|
|
|
|
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
|
|
}
|
|
}
|