wok view libunique-gtk3/receipt @ rev 15309

lm-sensors: remove a wrong error trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 27 15:02:39 2013 +0000 (2013-09-27)
parents 68d68791ced5
children eeba7ab1dffe
line source
1 # SliTaz package receipt.
3 PACKAGE="libunique-gtk3"
4 VERSION="3.0.2"
5 CATEGORY="development"
6 SHORT_DESC="Create single instance applications"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://live.gnome.org/LibUnique"
10 SOURCE="libunique"
11 TARBALL="$SOURCE-$VERSION.tar.xz"
12 WGET_URL="$GNOME_MIRROR/$SOURCE/${VERSION%.*}/$TARBALL"
13 TAGS="gtk3"
15 DEPENDS="dbus-glib gtk+3"
16 BUILD_DEPENDS="glib-dev gtk+3-dev dbus-glib-dev gobject-introspection-dev \
17 libxml2-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --disable-static \
24 --enable-debug=no \
25 --disable-gtk-doc \
26 $CONFIGURE_ARGS &&
27 make &&
28 make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }