wok view goocanvas/receipt @ rev 23859

updated firefox-official (76.0 -> 77.0)
author Hans-G?nter Theisgen
date Wed Jun 17 15:35:48 2020 +0100 (2020-06-17)
parents d3eb5f4b53ea
children 6831608a1b2a
line source
1 # SliTaz package receipt.
3 PACKAGE="goocanvas"
4 VERSION="2.0.4"
5 CATEGORY="x-window"
6 SHORT_DESC="A cairo canvas widget for GTK+."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="https://wiki.gnome.org/Projects/GooCanvas"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
14 DEPENDS="gtk+3"
15 BUILD_DEPENDS="gtk+3-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make -j 1 &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }