wok view libglw-mesa/receipt @ rev 14305

Up: eeze-dev (1.7.5)
author Dominique Corbex <domcox@slitaz.org>
date Sun Apr 07 10:17:03 2013 +0200 (2013-04-07)
parents 37eb1b42e1fe
children 8f447cf2eee5
line source
1 # SliTaz package receipt.
3 PACKAGE="libglw-mesa"
4 VERSION="8.0.0"
5 CATEGORY="x-window"
6 SHORT_DESC="OpenGL widget 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/glw.git"
11 PROVIDE="libglw"
13 DEPENDS="glibc-base util-linux-uuid zlib freetype lesstif mesa \
14 xorg-libICE xorg-libSM xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXt \
15 lesstif"
16 BUILD_DEPENDS="mesa-dev automake autoconf libtool"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./autogen.sh
23 ./configure \
24 --prefix=/usr \
25 $CONFIGURE_ARGS &&
26 make $MAKEFLAGS && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib/libGLw*so* $fs/usr/lib
34 }