wok view blueman/receipt @ rev 11820

Up: thunderbird to 10.0.2.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Feb 25 14:16:39 2012 -0500 (2012-02-25)
parents 5189e691d619
children 73641efed1cc
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-ng-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-ng-uuid-dev dbus-dev \
16 dbus-python-dev intltool"
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 }