wok-current view blueman/receipt @ rev 13730
Up sdcc (3.2.0)
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Sat Dec 22 17:18:47 2012 +0100 (2012-12-22) | 
| parents | 73641efed1cc | 
| children | 2b9f96603415 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="blueman"
     4 VERSION="1.10"
     5 CATEGORY="system-tools"
     6 SHORT_DESC="Easy to use GTK+ Bluetooth Manager."
     7 MAINTAINER="pankso@slitaz.org"
     8 TARBALL="$PACKAGE-$VERSION.tar.gz"
     9 WEB_SITE="http://blueman-project.org/"
    10 WGET_URL="http://download.tuxfamily.org/blueman/$TARBALL"
    12 DEPENDS="linux-bluetooth bluez python pygtk libnotify notify-python python-pyrex \
    13 startup-notification util-linux-uuid dbus dbus-python"
    14 BUILD_DEPENDS="bluez-dev python-dev pygtk-dev notify-python libnotify-dev \
    15 python-pyrex startup-notification-dev util-linux-uuid-dev dbus-dev \
    16 dbus-python-dev intltool libtool notify-python"
    18 # Rules to configure and make the package.
    19 compile_rules()
    20 {
    21 	cd $src
    22 	./configure \
    23 		--prefix=/usr \
    24 		--sysconfdir=/etc \
    25 		--libexecdir=/usr/lib/$PACKAGE \
    26 		$CONFIGURE_ARGS &&
    27 	make && make install
    28 }
    30 # Rules to gen a SliTaz package suitable for Tazpkg.
    31 genpkg_rules()
    32 {
    33 	mkdir -p $fs/usr/share/pixmaps
    34 	cp -a $install/usr/bin $fs/usr
    35 	cp -a $install/usr/lib $fs/usr
    36 	cp -a $install/usr/share/blueman $fs/usr/share
    37 	cp -a $install/usr/share/hal $fs/usr/share
    38 	cp -a $install/usr/share/dbus-1 $fs/usr/share
    39 	cp -a $install/usr/share/PolicyKit $fs/usr/share
    40 	cp -a $install/usr/share/icons/hicolor/32x32/apps/*.png \
    41 		$fs/usr/share/pixmaps
    42 	cp -a $install/etc $fs
    43 }