1c5f4690e6
That means that version comparators are not supported anymore in hostmakedepends and makedepends. This will ensure that a pkg is always built with the same build dependencies everywhere, if the srcpkgs tree is uptodate.
48 lines
1.3 KiB
Bash
48 lines
1.3 KiB
Bash
# Template file for 'bluez'
|
|
pkgname=bluez
|
|
version=5.29
|
|
revision=1
|
|
build_options="systemd"
|
|
build_style=gnu-configure
|
|
configure_args="--with-udevdir=/usr/lib/udev
|
|
--enable-pie --enable-threads --enable-library $(vopt_enable systemd)"
|
|
hostmakedepends="automake libtool pkg-config flex"
|
|
makedepends="libglib-devel libudev-devel dbus-devel
|
|
cups-devel libical-devel readline-devel $(vopt_if systemd systemd-devel)"
|
|
conf_files="/etc/bluetooth/main.conf"
|
|
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=df216a6d5ec6133355e5d4ed6b5e7a188a940940d337374e166758513246f0e4
|
|
|
|
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
|
|
}
|
|
}
|