wok view blueman/receipt @ rev 16713

sakura: add patch
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu May 29 10:48:34 2014 +0300 (2014-05-29)
parents 2b9f96603415
children 16df76e1fc6a
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 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://blueman-project.org/"
11 WGET_URL="http://download.tuxfamily.org/blueman/$TARBALL"
13 DEPENDS="linux-bluetooth bluez python pygtk libnotify notify-python python-pyrex \
14 startup-notification util-linux-uuid dbus dbus-python"
15 BUILD_DEPENDS="bluez-dev python-dev pygtk-dev notify-python libnotify-dev \
16 python-pyrex startup-notification-dev util-linux-uuid-dev dbus-dev \
17 dbus-python-dev intltool libtool notify-python"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src
23 ./configure \
24 --prefix=/usr \
25 --sysconfdir=/etc \
26 --libexecdir=/usr/lib/$PACKAGE \
27 $CONFIGURE_ARGS &&
28 make && make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/share/pixmaps
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/lib $fs/usr
37 cp -a $install/usr/share/blueman $fs/usr/share
38 cp -a $install/usr/share/hal $fs/usr/share
39 cp -a $install/usr/share/dbus-1 $fs/usr/share
40 cp -a $install/usr/share/PolicyKit $fs/usr/share
41 cp -a $install/usr/share/icons/hicolor/32x32/apps/*.png \
42 $fs/usr/share/pixmaps
43 cp -a $install/etc $fs
44 }