wok annotate gtkglext/receipt @ rev 4394

tazbb: allow packages with symlinks only
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Oct 16 15:30:12 2009 +0200 (2009-10-16)
parents
children 9f19aee613be
rev   line source
pankso@4321 1 # SliTaz package receipt.
pankso@4321 2
pankso@4321 3 PACKAGE="gtkglext"
pankso@4321 4 VERSION="1.2.0"
pankso@4321 5 CATEGORY="x-window"
pankso@4321 6 SHORT_DESC="GtkGLExt is an OpenGL extension to GTK+."
pankso@4321 7 MAINTAINER="pankso@slitaz.org"
pankso@4321 8 DEPENDS="gtk+ mesa"
pankso@4321 9 BUILD_DEPENDS="gtk+-dev mesa-dev"
pankso@4321 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@4321 11 WEB_SITE="http://gtkglext.sourceforge.net/"
pankso@4321 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pankso@4321 13
pankso@4321 14 # Rules to configure and make the package.
pankso@4321 15 compile_rules()
pankso@4321 16 {
pankso@4321 17 cd $src
pankso@4321 18 ./configure \
pankso@4321 19 --prefix=/usr \
pankso@4321 20 $CONFIGURE_ARGS &&
pankso@4321 21 make &&
pankso@4321 22 make DESTDIR=$PWD/_pkg install
pankso@4321 23 }
pankso@4321 24
pankso@4321 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@4321 26 genpkg_rules()
pankso@4321 27 {
pankso@4321 28 mkdir -p $fs/usr/lib
pankso@4321 29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@4321 30 }