wok-next annotate libglu-mesa/receipt @ rev 19943

Up xine-lib (1.2.8)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Oct 16 10:16:55 2017 +0200 (2017-10-16)
parents b3396910c619
children 8940878905f3
rev   line source
b1+slitaz@1837 1 # SliTaz package receipt.
b1+slitaz@1837 2
b1+slitaz@1837 3 PACKAGE="libglu-mesa"
pascal@13789 4 VERSION="9.0.0"
pascal@13789 5 CATEGORY="x-window"
pascal@13789 6 SHORT_DESC="OpenGL utility library."
b1+slitaz@1837 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15473 8 LICENSE="MIT"
pascal@13789 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
b1+slitaz@1837 10 WEB_SITE="http://www.mesa3d.org/"
pascal@13789 11 WGET_URL="git|git://anongit.freedesktop.org/mesa/glu.git"
pascal@13789 12 PROVIDE="libglu"
pascal@13789 13
slaxemulator@6971 14 DEPENDS="glibc-base gcc-lib-base mesa"
psychomaniak@19906 15 BUILD_DEPENDS="mesa-dev automake autoconf libtool expat-dev xorg-dev \
psychomaniak@19906 16 xorg-libxshmfence-dev"
pascal@13789 17
pascal@13789 18 # Rules to configure and make the package.
pascal@13789 19 compile_rules()
pascal@13789 20 {
pascal@13789 21 cd $src
pascal@13789 22 ./autogen.sh
pascal@13789 23 ./configure \
pascal@13789 24 --prefix=/usr \
pascal@13789 25 $CONFIGURE_ARGS &&
pascal@13789 26 make $MAKEFLAGS && make install
pascal@13789 27 }
b1+slitaz@1837 28
b1+slitaz@1837 29 # Rules to gen a SliTaz package suitable for Tazpkg.
b1+slitaz@1837 30 genpkg_rules()
b1+slitaz@1837 31 {
b1+slitaz@1837 32 mkdir -p $fs/usr/lib
pascal@13789 33 cp -a $install/usr/lib/libGLU*so* $fs/usr/lib
b1+slitaz@1837 34 }