wok view gtkglext/receipt @ rev 23797

linld: fix argstr
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 23 18:02:24 2020 +0000 (2020-05-23)
parents fc2aee218690
children 932cd974e081
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="https://web.archive.org/web/20190521002311/https://projects-old.gnome.org/gtkglext/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 SUGGESTED="nvidia"
14 DEPENDS="gtk+ mesa libglu-mesa pangox-compat"
15 BUILD_DEPENDS="gtk+-dev libglu-mesa libglu-mesa-dev mesa-dev \
16 util-linux-uuid-dev autoconf pangox-compat-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 patch -Np1 -i $stuff/gtk2.20.patch
22 autoconf --force
23 ./configure \
24 --prefix=/usr \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }