aports/main/bluez-headers/APKBUILD
2025-06-03 00:09:33 +00:00

35 lines
750 B
Text

# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=bluez-headers
pkgver=5.83
pkgrel=0
pkgdesc="Bluez development headers"
url="https://www.bluez.org/"
arch="noarch"
license="GPL-2.0-or-later"
depends="!bluez-dev"
source="https://www.kernel.org/pub/linux/bluetooth/bluez-$pkgver.tar.xz"
builddir="$srcdir/bluez-$pkgver"
options="!check" # just headers
package() {
local headers="
bluetooth
bnep
cmtp
hci
hci_lib
hidp
l2cap
rfcomm
sco
sdp
sdp_lib
"
for header in $headers; do
install -Dm644 ./lib/$header.h -t "$pkgdir"/usr/include/bluetooth
done
}
sha512sums="
d2ab04e5d2458249964305c991c5d0c1678d24927019e5b6e10d2f8e1350e3f7d7c783fd3770874dc621a699171b68de6678bead1dcb6e6e73c9863248f26aaa bluez-5.83.tar.xz
"