wok annotate geeqie/receipt @ rev 20891

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Feb 26 08:20:18 2019 +0100 (2019-02-26)
parents 2c57e6f53630
children 544e47246b33
rev   line source
devl547@5249 1 # SliTaz package receipt.
devl547@5249 2
devl547@5249 3 PACKAGE="geeqie"
psychomaniak@16947 4 VERSION="1.0"
devl547@5693 5 CATEGORY="utilities"
psychomaniak@16939 6 SHORT_DESC="Application designed to test GTK+ performance. based on gqview"
devl547@5249 7 MAINTAINER="devl547@gmail.com"
pascal@15201 8 LICENSE="GPL2"
devl547@5249 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
devl547@5249 10 WEB_SITE="http://geeqie.sourceforge.net/"
psychomaniak@16939 11 WGET_URL="https://gitorious.org/$PACKAGE/$PACKAGE/archive/v$VERSION.tar.gz"
pascal@15074 12
psychomaniak@16939 13 DEPENDS="gtk+ lcms"
psychomaniak@16939 14 BUILD_DEPENDS="gettext intltool gtk+-dev lcms-dev wget automake"
devl547@5249 15
devl547@5249 16 # Rules to configure and make the package.
devl547@5249 17 compile_rules()
devl547@5249 18 {
devl547@5249 19 cd $src
psychomaniak@16939 20 ./autogen.sh
devl547@5249 21 ./configure --prefix=/usr --infodir=/usr/share/info \
devl547@5249 22 --mandir=/usr/share/man $CONFIGURE_ARGS &&
devl547@5249 23 make &&
pascal@9022 24 make install
devl547@5249 25 }
devl547@5249 26
devl547@5249 27 # Rules to gen a SliTaz package suitable for Tazpkg.
devl547@5249 28 genpkg_rules()
devl547@5249 29 {
devl547@5249 30 mkdir -p $fs/usr/
pascal@15074 31 cp -a $install/usr/bin $fs/usr
pascal@15074 32 cp -a $install/usr/lib $fs/usr
pascal@15074 33 cp -a $install/usr/share/ $fs/usr
devl547@5249 34 }