# HG changeset patch # User Rohit Joshi # Date 1268396728 0 # Node ID f5cf508e9e5fd1f9e1bda5bc5af4b277562785d3 # Parent e8a9cb9ba1990ce6b455214ce615275bf79b36a3 Up: bluez; add more bluetooth tools diff -r e8a9cb9ba199 -r f5cf508e9e5f bluez/receipt --- a/bluez/receipt Fri Mar 12 11:53:43 2010 +0000 +++ b/bluez/receipt Fri Mar 12 12:25:28 2010 +0000 @@ -1,18 +1,19 @@ # SliTaz package receipt. PACKAGE="bluez" -VERSION="4.54" +VERSION="4.62" CATEGORY="system-tools" SHORT_DESC="Bluetooth protocol stack." MAINTAINER="pankso@slitaz.org" DEPENDS="linux-bluetooth alsa-lib glib dbus" -BUILD_DEPENDS="alsa-lib-dev" +BUILD_DEPENDS="alsa-lib-dev dbus-dev glib-dev" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www.bluez.org/" WGET_URL="http://www.kernel.org/pub/linux/bluetooth/$TARBALL" TAGS="bluetooth" # Rules to configure and make the package. + compile_rules() { cd $src @@ -22,6 +23,18 @@ --localstatedir=/var \ --mandir=/usr/share/man \ --disable-gstreamer \ + --disable-network \ + --disable-input \ + --enable-alsa \ + --enable-usb \ + --enable-tools \ + --enable-cups \ + --enable-hid2hci \ + --enable-hidd \ + --enable-dund \ + --enable-dfutool \ + --enable-udevrules \ + --enable-configfiles \ $CONFIGURE_ARGS && make && make DESTDIR=$PWD/_pkg install @@ -30,14 +43,18 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib/alsa-lib + mkdir -p $fs/usr/lib/alsa-lib $fs/etc/init.d/ cp -a $_pkg/usr/bin $fs/usr cp -a $_pkg/usr/sbin $fs/usr cp -a $_pkg/usr/lib/*.so* $fs/usr/lib cp -a $_pkg/usr/lib/alsa-lib/*.so* $fs/usr/lib/alsa-lib cp -a $_pkg/usr/lib/bluetooth $fs/usr/lib + cp -a $_pkg/usr/lib/cups $fs/usr/lib cp -a $_pkg/etc $fs cp -a $_pkg/var $fs - # Udev rules - cp -a $_pkg/lib/udev $fs/etc + + #some extra tools and config files + cp -a $src/test/simple-agent $fs/usr/bin/bluez-simple-agent + cp $src/audio/audio.conf $fs/etc/bluetooth + }