wok annotate connman-ui/receipt @ rev 16323

Up: connman-ui url (actualy we can download zip archive for specific commit)
author Alexander Medvedev <devl547@gmail.com>
date Thu Apr 10 12:23:54 2014 +0400 (2014-04-10)
parents 55ae2a832163
children d0e1c4b6c3b0
rev   line source
pascal@15721 1 # SliTaz package receipt.
pascal@15721 2
pascal@15721 3 PACKAGE="connman-ui"
pascal@16322 4 GITHASH="e4a8ddcca0870eb2ece5a7e3ea0296de9c86e5b2"
pascal@16322 5 VERSION=${GITHASH:0:7}
pascal@15721 6 CATEGORY="network"
pascal@15721 7 SHORT_DESC="A full-featured GTK based trayicon UI for ConnMan"
pascal@15721 8 MAINTAINER="domcox@slitaz.org"
pascal@15721 9 LICENSE="GPL2"
pascal@15721 10 WEB_SITE="http://github.com/tbursztyka/connman-ui"
devl547@16323 11 TARBALL="$GITHASH.zip"
devl547@16323 12 WGET_URL="https://github.com/tbursztyka/connman-ui/archive/$TARBALL"
pascal@15721 13
pascal@15721 14 DEPENDS="connman dbus gtk+3"
pascal@16322 15 BUILD_DEPENDS="wget autoconf automake libtool connman-dev gtk+3-dev dbus-dev \
pascal@15721 16 libxml2-dev"
pascal@15721 17
pascal@15721 18 # Rules to configure and make the package.
pascal@15721 19 compile_rules()
pascal@15721 20 {
pascal@15721 21 ./autogen.sh &&
pascal@15721 22 ./configure $CONFIGURE_ARGS &&
pascal@15721 23 # remove Exite menu
pascal@15721 24 cp -a $stuff/right_menu.ui $src/data/ui &&
pascal@15721 25 # change some icons
pascal@15721 26 cp -a $stuff/icons/*.png $src/data/icons &&
pascal@15721 27 make &&
pascal@15721 28 make DESTDIR=$DESTDIR install
pascal@15721 29 }
pascal@15721 30
pascal@15721 31 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@15721 32 genpkg_rules()
pascal@15721 33 {
pascal@15721 34 cp -a $install/* $fs
pascal@15721 35 }