wok-undigest rev 40

Add blueman (GTK+ Bluetooth Manager)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Apr 11 20:03:28 2010 +0200 (2010-04-11)
parents 0f61a68c820e
children b58929eab917
files blueman/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/blueman/receipt	Sun Apr 11 20:03:28 2010 +0200
     1.3 @@ -0,0 +1,41 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="blueman"
     1.7 +VERSION="1.10"
     1.8 +CATEGORY="system-tools"
     1.9 +SHORT_DESC="Easy to use GTK+ Bluetooth Manager."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +DEPENDS="linux-bluetooth bluez python pygtk libnotify notify-python"
    1.12 +BUILD_DEPENDS="bluez-dev python-dev pygtk-dev notify-python"
    1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14 +WEB_SITE="http://blueman-project.org/"
    1.15 +WGET_URL="http://download.tuxfamily.org/blueman/$TARBALL"
    1.16 +
    1.17 +# Rules to configure and make the package.
    1.18 +compile_rules()
    1.19 +{
    1.20 +	cd $src
    1.21 +	./configure \
    1.22 +		--prefix=/usr \
    1.23 +		--sysconfdir=/etc \
    1.24 +		--libexecdir=/usr/lib/$PACKAGE \
    1.25 +		--mandir=/usr/share/man \
    1.26 +		$CONFIGURE_ARGS &&
    1.27 +	make &&
    1.28 +	make DESTDIR=$PWD/_pkg install
    1.29 +}
    1.30 +
    1.31 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.32 +genpkg_rules()
    1.33 +{
    1.34 +	mkdir -p $fs/usr/share/pixmaps
    1.35 +	cp -a $_pkg/usr/bin $fs/usr
    1.36 +	cp -a $_pkg/usr/lib $fs/usr
    1.37 +	cp -a $_pkg/usr/share/blueman $fs/usr/share
    1.38 +	cp -a $_pkg/usr/share/hal $fs/usr/share
    1.39 +	cp -a $_pkg/usr/share/dbus-1 $fs/usr/share
    1.40 +	cp -a $_pkg/usr/share/PolicyKit $fs/usr/share
    1.41 +	cp -a $_pkg/usr/share/icons/hicolor/32x32/apps/*.png \
    1.42 +		$fs/usr/share/pixmaps
    1.43 +	cp -a $_pkg/etc $fs
    1.44 +}