wok view libglu-mesa/receipt @ rev 15187

slitaz-base-files: up 5.4.2
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Aug 24 15:12:52 2013 +0300 (2013-08-24)
parents 37eb1b42e1fe
children 8f447cf2eee5
line source
1 # SliTaz package receipt.
3 PACKAGE="libglu-mesa"
4 VERSION="9.0.0"
5 CATEGORY="x-window"
6 SHORT_DESC="OpenGL utility library."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.mesa3d.org/"
10 WGET_URL="git|git://anongit.freedesktop.org/mesa/glu.git"
11 PROVIDE="libglu"
13 DEPENDS="glibc-base gcc-lib-base mesa"
14 BUILD_DEPENDS="mesa-dev automake autoconf libtool"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./autogen.sh
21 ./configure \
22 --prefix=/usr \
23 $CONFIGURE_ARGS &&
24 make $MAKEFLAGS && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib/libGLU*so* $fs/usr/lib
32 }