wok view connman-ui/receipt @ rev 16164

wayland: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 29 08:28:10 2014 +0000 (2014-03-29)
parents
children 55ae2a832163
line source
1 # SliTaz package receipt.
3 PACKAGE="connman-ui"
4 VERSION="0.1-git"
5 CATEGORY="network"
6 SHORT_DESC="A full-featured GTK based trayicon UI for ConnMan"
7 MAINTAINER="domcox@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://github.com/tbursztyka/connman-ui"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WGET_URL="git|git://github.com/tbursztyka/$PACKAGE.git"
13 DEPENDS="connman dbus gtk+3"
14 BUILD_DEPENDS="git autoconf automake libtool connman-dev gtk+3-dev dbus-dev \
15 libxml2-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./autogen.sh &&
21 ./configure $CONFIGURE_ARGS &&
22 # remove Exite menu
23 cp -a $stuff/right_menu.ui $src/data/ui &&
24 # change some icons
25 cp -a $stuff/icons/*.png $src/data/icons &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cp -a $install/* $fs
34 }