wok view gob2/receipt @ rev 22743

updated duplicity (0.7.18.2 -> 0.8.09)
author Hans-G?nter Theisgen
date Fri Jan 24 08:25:58 2020 +0100 (2020-01-24)
parents d3eb5f4b53ea
children 6831608a1b2a
line source
1 # SliTaz package receipt.
3 PACKAGE="gob2"
4 VERSION="2.0.20"
5 CATEGORY="x-window"
6 MAINTAINER="jozee@slitaz.org"
7 LICENSE="GPL2"
8 SHORT_DESC="GTK Object Builder (GOB) is a simple preprocessor for easily creating GTK objects."
9 WEB_SITE="https://www.jirka.org/gob.html"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/${PACKAGE}/${VERSION%.*}/$TARBALL"
14 DEPENDS="glib"
15 BUILD_DEPENDS="flex glib-dev"
16 HOST_ARCH="i486 arm"
18 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure $CONFIGURE_ARGS &&
23 make -j1 &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/bin $fs/usr
32 }