diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-07-23 18:29:59 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-07-23 18:29:59 +0000 |
commit | d3edd157d08526e8f63d01e4b4c0acdf6d1a8c10 (patch) | |
tree | 1b0bb9dd2c9119293eff9c88f0cf51e7b6bf585e /testing/bluez | |
parent | c399d539f0e3802194114d2566e8334951ffb146 (diff) | |
download | aports-d3edd157d08526e8f63d01e4b4c0acdf6d1a8c10.tar.bz2 aports-d3edd157d08526e8f63d01e4b4c0acdf6d1a8c10.tar.xz |
testing/bluez: fix support for usb and gstreamer
Diffstat (limited to 'testing/bluez')
-rw-r--r-- | testing/bluez/APKBUILD | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/testing/bluez/APKBUILD b/testing/bluez/APKBUILD index 2bf90aea96..1ae394e84f 100644 --- a/testing/bluez/APKBUILD +++ b/testing/bluez/APKBUILD @@ -1,14 +1,15 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=bluez pkgver=4.69 -pkgrel=0 +pkgrel=1 pkgdesc="Tools for the Bluetooth protocol stack" url="http://www.bluez.org/" license="GPL2" depends= -makedepends="dbus-dev gstreamer-dev alsa-lib-dev libusb-dev libnl-dev" +makedepends="dbus-dev gst-plugins-base-dev alsa-lib-dev libusb-compat-dev + libnl-dev" subpackages="$pkgname-dev $pkgname-doc libbluetooth $pkgname-alsa $pkgname-cups - $pkgname-netlink" + $pkgname-netlink $pkgname-gstreamer" source="http://www.kernel.org/pub/linux/bluetooth/$pkgname-$pkgver.tar.bz2 bluetooth.initd bluetooth.confd @@ -72,6 +73,12 @@ netlink() { "$subpkgdir"/usr/lib/bluetooth/plugins } +gstreamer() { + pkgdesc="Bluez plugin for gstreamer" + mkdir -p "$subpkgdir"/usr/lib + mv "$pkgdir"/usr/lib/gstreamer* \ + "$subpkgdir"/usr/lib/ +} md5sums="350568aa11a95eac6e56e9289ff1f91d bluez-4.69.tar.bz2 66408fb89b05e7ce7e61c4c3c356d2c6 bluetooth.initd a159d897a057f4675548327329c4cc22 bluetooth.confd" |