wok-next view connman-ui/receipt @ rev 20217

libnfc: receipt v2
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Nov 05 10:55:27 2017 +0100 (2017-11-05)
parents d0e1c4b6c3b0
children d43bf7aae921
line source
1 # SliTaz package receipt.
3 PACKAGE="connman-ui"
4 GITHASH="e4a8ddcca0870eb2ece5a7e3ea0296de9c86e5b2"
5 VERSION=${GITHASH:0:7}
6 CATEGORY="network"
7 SHORT_DESC="A full-featured GTK based trayicon UI for ConnMan"
8 MAINTAINER="domcox@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="http://github.com/tbursztyka/connman-ui"
11 TARBALL="$PACKAGE-$VERSION.zip"
12 WGET_URL="https://github.com/tbursztyka/connman-ui/archive/$GITHASH.zip"
14 DEPENDS="connman dbus gtk+3"
15 BUILD_DEPENDS="wget autoconf automake libtool connman-dev gtk+3-dev dbus-dev \
16 libxml2-dev intltool"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./autogen.sh &&
22 ./configure $CONFIGURE_ARGS &&
23 # remove Exite menu
24 cp -a $stuff/right_menu.ui $src/data/ui &&
25 # change some icons
26 cp -a $stuff/icons/*.png $src/data/icons &&
27 make &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 cp -a $install/* $fs
35 }