wok annotate libunique-gtk3/receipt @ rev 14574

eet: Up to 1.7.7
author Dominique Corbex <domcox@slitaz.org>
date Sat May 25 12:38:42 2013 +0200 (2013-05-25)
parents
children 6eff489aa802
rev   line source
al@14269 1 # SliTaz package receipt.
al@14269 2
al@14269 3 PACKAGE="libunique-gtk3"
al@14269 4 VERSION="3.0.2"
al@14269 5 CATEGORY="development"
al@14269 6 SHORT_DESC="Create single instance applications"
al@14269 7 MAINTAINER="erjo@slitaz.org"
al@14269 8 WEB_SITE="http://live.gnome.org/LibUnique"
al@14269 9 SOURCE="libunique"
al@14269 10 TARBALL="$SOURCE-$VERSION.tar.xz"
al@14269 11 WGET_URL="$GNOME_MIRROR/$SOURCE/${VERSION%.*}/$TARBALL"
al@14269 12 TAGS="gtk3"
al@14269 13
al@14269 14 DEPENDS="dbus-glib gtk+3"
al@14269 15 BUILD_DEPENDS="glib-dev gtk+3-dev dbus-glib-dev gobject-introspection-dev \
al@14269 16 libxml2-dev"
al@14269 17
al@14269 18 # Rules to configure and make the package.
al@14269 19 compile_rules()
al@14269 20 {
al@14269 21 ./configure \
al@14269 22 --disable-static \
al@14269 23 --enable-debug=no \
al@14269 24 --disable-gtk-doc \
al@14269 25 $CONFIGURE_ARGS &&
al@14269 26 make &&
al@14269 27 make install
al@14269 28 }
al@14269 29
al@14269 30 # Rules to gen a SliTaz package suitable for Tazpkg.
al@14269 31 genpkg_rules()
al@14269 32 {
al@14269 33 mkdir -p $fs/usr/lib
al@14269 34 cp -a $install/usr/lib/*.so* $fs/usr/lib
al@14269 35 }
al@14269 36