wok view blueman/receipt @ rev 23029

updated libffi and libffi-dev (3.2.1 -> 3.3)
author Hans-G?nter Theisgen
date Tue Mar 03 16:31:51 2020 +0100 (2020-03-03)
parents 4fc3978fcdae
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="blueman"
4 VERSION="2.1.1"
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"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 #WGET_URL="http://download.tuxfamily.org/blueman/$TARBALL"
13 WGET_URL="$WEB_SITE/releases/download/$VERSION/$TARBALL"
15 DEPENDS="bluez dbus dbus-python libnotify linux-bluetooth
16 notify-python py3k pygtk python-pyrex
17 startup-notification util-linux-uuid"
18 BUILD_DEPENDS="bluez-dev dbus-dev dbus-python-dev intltool
19 libtool libnotify-dev notify-python py3k-cython
20 py3k-dev pygobject3 pygtk-dev python-pyrex
21 startup-notification-dev util-linux-uuid-dev
22 xcb-util-dev"
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 ./configure \
28 --prefix=/usr \
29 --sysconfdir=/etc \
30 --libexecdir=/usr/lib/$PACKAGE \
31 $CONFIGURE_ARGS &&
32 make &&
33 make install
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 mkdir -p $fs/usr/share/pixmaps
41 cp -a $install/usr/bin $fs/usr
42 cp -a $install/usr/lib $fs/usr
43 cp -a $install/usr/share/blueman $fs/usr/share
44 # cp -a $install/usr/share/hal $fs/usr/share
45 cp -a $install/usr/share/dbus-1 $fs/usr/share
46 # cp -a $install/usr/share/PolicyKit $fs/usr/share
47 cp -a $install/usr/share/icons/hicolor/32x32/apps/*.png \
48 $fs/usr/share/pixmaps
49 cp -a $install/etc $fs
50 }