wok view geeqie/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
parents 2c57e6f53630
children 544e47246b33
line source
1 # SliTaz package receipt.
3 PACKAGE="geeqie"
4 VERSION="1.0"
5 CATEGORY="utilities"
6 SHORT_DESC="Application designed to test GTK+ performance. based on gqview"
7 MAINTAINER="devl547@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://geeqie.sourceforge.net/"
11 WGET_URL="https://gitorious.org/$PACKAGE/$PACKAGE/archive/v$VERSION.tar.gz"
13 DEPENDS="gtk+ lcms"
14 BUILD_DEPENDS="gettext intltool gtk+-dev lcms-dev wget automake"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./autogen.sh
21 ./configure --prefix=/usr --infodir=/usr/share/info \
22 --mandir=/usr/share/man $CONFIGURE_ARGS &&
23 make &&
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 cp -a $install/usr/lib $fs/usr
33 cp -a $install/usr/share/ $fs/usr
34 }