wok-undigest view blueman/receipt @ rev 244

Add ii
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 29 12:16:52 2011 +0200 (2011-04-29)
parents
children 3399f1bb2a2e
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 DEPENDS="linux-bluetooth bluez python pygtk libnotify notify-python"
9 BUILD_DEPENDS="bluez-dev python-dev pygtk-dev notify-python"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://blueman-project.org/"
12 WGET_URL="http://download.tuxfamily.org/blueman/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --sysconfdir=/etc \
21 --libexecdir=/usr/lib/$PACKAGE \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/share/pixmaps
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/lib $fs/usr
34 cp -a $_pkg/usr/share/blueman $fs/usr/share
35 cp -a $_pkg/usr/share/hal $fs/usr/share
36 cp -a $_pkg/usr/share/dbus-1 $fs/usr/share
37 cp -a $_pkg/usr/share/PolicyKit $fs/usr/share
38 cp -a $_pkg/usr/share/icons/hicolor/32x32/apps/*.png \
39 $fs/usr/share/pixmaps
40 cp -a $_pkg/etc $fs
41 }