wok-next view libunique/receipt @ rev 20845

Add neofetch, tcl2c-fork; build two versions of tklauncher (using tcl2c and tcl2c-fork) with different warnings
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Jun 23 09:45:42 2018 +0300 (2018-06-23)
parents 5841522533ec
children df20b2110f7e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libunique"
4 VERSION="1.1.6"
5 CATEGORY="development"
6 SHORT_DESC="Library for writing single instance application"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://wiki.gnome.org/Attic/LibUnique"
10 LFS="http://www.linuxfromscratch.org/blfs/view/stable/general/libunique.html"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
15 BUILD_DEPENDS_arm="cairo-dev gtk+-dev glib-dev expat-dev"
16 BUILD_DEPENDS="patch automake glib-dev gettext libtool gtk+-dev \
17 xorg-libICE-dev gobject-introspection-dev gtk-doc"
18 SPLIT="libunique-dev"
20 compile_rules() {
21 autoreconf -fi &&
22 ./configure \
23 --disable-dbus \
24 --disable-static \
25 --disable-debug \
26 $CONFIGURE_ARGS &&
27 fix libtool &&
28 make &&
29 make install
30 }
32 genpkg_rules() {
33 case $PACKAGE in
34 libunique)
35 copy @std
36 DEPENDS="glib gtk+ xorg-libX11"
37 ;;
38 *-dev)
39 copy @dev
40 DEPENDS="libunique gtk+-dev"
41 ;;
42 esac
43 }