wok annotate gqview/receipt @ rev 20884

modified TARBALL and WGET_URL in enca recipe
author Hans-G?nter Theisgen
date Mon Feb 25 14:53:31 2019 +0100 (2019-02-25)
parents d1c17bd2c2bc
children 33b800b4871e
rev   line source
pankso@43 1 # SliTaz package receipt.
pankso@43 2
pankso@43 3 PACKAGE="gqview"
pankso@43 4 VERSION="2.0.4"
pankso@207 5 CATEGORY="graphics"
pankso@43 6 SHORT_DESC="Images viewer and manager using GTK+."
pankso@43 7 MAINTAINER="pankso@slitaz.org"
pascal@15589 8 LICENSE="GPL2"
pankso@43 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@43 10 WEB_SITE="http://gqview.sourceforge.net/"
pankso@43 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pankso@43 12
pascal@15589 13 DEPENDS="gtk+ xorg-libXdamage"
pascal@15589 14 BUILD_DEPENDS="pkg-config gtk+ gtk+-dev"
pascal@15589 15
pankso@43 16 # Rules to configure and make the package.
pankso@43 17 compile_rules()
pankso@43 18 {
pankso@43 19 cd $src
pascal@17670 20 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lm"
pankso@43 21 ./configure --prefix=/usr --mandir=/usr/share/man \
pascal@1511 22 $CONFIGURE_ARGS &&
pascal@1511 23 make &&
pascal@15589 24 make DESTDIR=$DESTDIR install
pankso@43 25 }
pankso@43 26
pankso@43 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@43 28 genpkg_rules()
pankso@43 29 {
pankso@43 30 mkdir -p $fs/usr/share/locale
pascal@15589 31 cp -a $install/usr/bin $fs/usr
pascal@15589 32 cp -a $install/usr/share/pixmaps $fs/usr/share
pascal@15589 33 cp -a $install/usr/share/locale/fr $fs/usr/share/locale
pankso@43 34 }