wok annotate gliv/receipt @ rev 15002

Add some GPL2 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 21:12:16 2013 +0000 (2013-08-10)
parents 6b09507225ec
children e4fd343fd7b8
rev   line source
pascal@11222 1 # SliTaz package receipt.
pascal@11222 2
pascal@11222 3 PACKAGE="gliv"
pascal@11222 4 VERSION="1.9.6"
pascal@11222 5 CATEGORY="multimedia"
pascal@11222 6 SHORT_DESC="An image viewer that uses OpenGL"
pascal@11222 7 MAINTAINER="devl547@gmail.com"
pascal@15002 8 LICENSE="GPL2"
pascal@11222 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@11222 10 WEB_SITE="http://guichaz.free.fr/gliv/"
pascal@11222 11 WGET_URL="$WEB_SITE/files/$TARBALL"
pascal@13796 12
pascal@11222 13 BUILD_DEPENDS="gtk+-dev gtkglext gtkglext-dev bison mesa-dev"
pascal@11222 14 DEPENDS="gtk+ gtkglext gettext"
pascal@11222 15
pascal@11222 16 # Rules to configure and make the package.
pascal@11222 17 compile_rules()
pascal@11222 18 {
pascal@11222 19 cd $src
pascal@11222 20 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@11222 21 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@11222 22 make &&
pascal@13796 23 make DESTDIR=$DESTDIR install
pascal@11222 24 }
pascal@11222 25
pascal@11222 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11222 27 genpkg_rules()
pascal@11222 28 {
pascal@11222 29 mkdir -p $fs/usr
pascal@13796 30 cp -a $install/usr/bin $fs/usr
pascal@13796 31 cp -a $install/usr/share $fs/usr
pascal@11222 32 }