wok-next diff connman-ui/receipt @ rev 16053
gnutls: CVE-2014-0092 fix
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Mar 10 15:55:04 2014 +0000 (2014-03-10) |
parents | |
children | 55ae2a832163 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/connman-ui/receipt Mon Mar 10 15:55:04 2014 +0000 1.3 @@ -0,0 +1,34 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="connman-ui" 1.7 +VERSION="0.1-git" 1.8 +CATEGORY="network" 1.9 +SHORT_DESC="A full-featured GTK based trayicon UI for ConnMan" 1.10 +MAINTAINER="domcox@slitaz.org" 1.11 +LICENSE="GPL2" 1.12 +WEB_SITE="http://github.com/tbursztyka/connman-ui" 1.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.14 +WGET_URL="git|git://github.com/tbursztyka/$PACKAGE.git" 1.15 + 1.16 +DEPENDS="connman dbus gtk+3" 1.17 +BUILD_DEPENDS="git autoconf automake libtool connman-dev gtk+3-dev dbus-dev \ 1.18 +libxml2-dev" 1.19 + 1.20 +# Rules to configure and make the package. 1.21 +compile_rules() 1.22 +{ 1.23 + ./autogen.sh && 1.24 + ./configure $CONFIGURE_ARGS && 1.25 + # remove Exite menu 1.26 + cp -a $stuff/right_menu.ui $src/data/ui && 1.27 + # change some icons 1.28 + cp -a $stuff/icons/*.png $src/data/icons && 1.29 + make && 1.30 + make DESTDIR=$DESTDIR install 1.31 +} 1.32 + 1.33 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.34 +genpkg_rules() 1.35 +{ 1.36 + cp -a $install/* $fs 1.37 +}