wok annotate bluez/receipt @ rev 19443

mc: change icons
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Oct 14 15:16:13 2016 +0300 (2016-10-14)
parents 7896f0694ef6
children 429d89fd5e0f
rev   line source
pankso@4357 1 # SliTaz package receipt.
pankso@4357 2
pankso@4357 3 PACKAGE="bluez"
domcox@14369 4 VERSION="4.101"
pankso@4357 5 CATEGORY="system-tools"
pankso@4357 6 SHORT_DESC="Bluetooth protocol stack."
pankso@4357 7 MAINTAINER="pankso@slitaz.org"
pascal@15002 8 LICENSE="GPL2"
al@19278 9 WEB_SITE="http://www.bluez.org/"
slaxemulator@7715 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
slaxemulator@11015 11 #WGET_URL="http://www.kernel.org/pub/linux/bluetooth/$TARBALL"
slaxemulator@11015 12 WGET_URL="http://sourceware.mirrors.tds.net/pub/kernel.org/linux/bluetooth/$TARBALL"
jozee@4932 13 TAGS="bluetooth"
pankso@4357 14
domcox@14369 15 DEPENDS="linux-bluetooth alsa-lib glib dbus pygobject dbus-python"
pascal@14375 16 BUILD_DEPENDS="alsa-lib-dev dbus-dev glib-dev libusb-dev pkg-config libusb-compat"
domcox@14369 17
pankso@4357 18 # Rules to configure and make the package.
pankso@4357 19 compile_rules()
pankso@4357 20 {
pascal@14375 21 sed -i 's/NEED_USB/xx&/' tools/*.c
al@19278 22
pankso@4357 23 ./configure \
pankso@4357 24 --prefix=/usr \
pankso@4357 25 --sysconfdir=/etc \
pankso@4357 26 --localstatedir=/var \
domcox@14369 27 --libexecdir=/lib \
pankso@4357 28 --mandir=/usr/share/man \
domcox@14369 29 --enable-bccmd \
domcox@14369 30 --enable-dfutool \
domcox@14369 31 --enable-dund \
jozee@5076 32 --enable-hid2hci \
jozee@5076 33 --enable-hidd \
domcox@14369 34 --enable-pand \
domcox@14369 35 --enable-usb \
domcox@14369 36 --enable-cups \
domcox@14369 37 --enable-tools \
domcox@14369 38 --enable-wiimote \
domcox@14369 39 --disable-test \
domcox@14369 40 --without-systemdunitdir \
pankso@4357 41 $CONFIGURE_ARGS &&
pankso@4357 42 make &&
slaxemulator@10990 43 make DESTDIR=$DESTDIR install
pankso@4357 44 }
pankso@4357 45
pankso@4357 46 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@4357 47 genpkg_rules()
pankso@4357 48 {
jozee@5077 49 mkdir -p $fs/usr/lib/alsa-lib
pascal@15002 50 cp -a $install/usr/bin $fs/usr
pascal@15002 51 cp -a $install/usr/sbin $fs/usr
pascal@15002 52 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@15002 53 cp -a $install/usr/lib/alsa-lib/*.so* $fs/usr/lib/alsa-lib
pascal@15002 54 cp -a $install/usr/lib/bluetooth $fs/usr/lib
pascal@15002 55 cp -a $install/usr/lib/cups $fs/usr/lib
pascal@15002 56 cp -a $install/etc $fs
pascal@15002 57 cp -a $install/var $fs
domcox@14369 58
jozee@5076 59 #some extra tools and config files
jozee@5076 60 cp -a $src/test/simple-agent $fs/usr/bin/bluez-simple-agent
jozee@5076 61 cp $src/audio/audio.conf $fs/etc/bluetooth
pankso@4357 62 }