wok view blueman/receipt @ rev 20257

Add giflossy
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 23:27:32 2018 +0100 (2018-03-13)
parents a5b865e166cd
children aa07498bd205
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 WEB_SITE="https://github.com/blueman-project/blueman"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
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 xcb-util-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
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 }