wok-undigest annotate blueman/receipt @ rev 459

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