wok view libunique-gtk3/receipt @ rev 21152

updated libboost-signals-dev again
author Hans-G?nter Theisgen
date Sat Mar 30 11:24:09 2019 +0100 (2019-03-30)
parents 6eff489aa802
children 6831608a1b2a
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="https://wiki.gnome.org/Attic/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 }