wok view gtkglext/receipt @ rev 16421

slitaz-*-configs*: Update receipt
author Christophe Lincoln <pankso@slitaz.org>
date Fri Apr 18 04:11:16 2014 +0200 (2014-04-18)
parents 6b09507225ec
children fc2aee218690
line source
1 # SliTaz package receipt.
3 PACKAGE="gtkglext"
4 VERSION="1.2.0"
5 CATEGORY="x-window"
6 SHORT_DESC="GtkGLExt is an OpenGL extension to GTK+."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://gtkglext.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 SUGGESTED="nvidia"
14 DEPENDS="gtk+ mesa libglu-mesa"
15 BUILD_DEPENDS="gtk+-dev libglu-mesa libglu-mesa-dev mesa-dev \
16 util-linux-uuid-dev autoconf"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 patch -Np1 -i $stuff/gtk2.20.patch
23 autoconf --force
24 ./configure \
25 --prefix=/usr \
26 $CONFIGURE_ARGS &&
27 make &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }