wok view connman-ui/receipt @ rev 18416

linux: add CONFIG_DRM_TDFX=m
author Richard Dunbar <mojo@slitaz.org>
date Sun Sep 20 12:56:13 2015 -0400 (2015-09-20)
parents 62ba0c4b1135
children a78610b2eb47
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"
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 }