wok view libglw-mesa/receipt @ rev 17224

Up tazwikiss yaff tazdev tazchroot slitaz-mercurial-style qemu-box mirror-tools (2.1.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Oct 15 15:56:22 2014 +0200 (2014-10-15)
parents 8f447cf2eee5
children 0e3538a79c6b
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 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.mesa3d.org/"
11 WGET_URL="git|git://anongit.freedesktop.org/mesa/glw.git"
12 PROVIDE="libglw"
14 DEPENDS="glibc-base util-linux-uuid zlib freetype lesstif mesa \
15 xorg-libICE xorg-libSM xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXt \
16 lesstif"
17 BUILD_DEPENDS="mesa-dev automake autoconf libtool util-linux-uuid-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src
23 ./autogen.sh
24 ./configure \
25 --prefix=/usr \
26 $CONFIGURE_ARGS &&
27 make $MAKEFLAGS && make 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/libGLw*so* $fs/usr/lib
35 }