wok-6.x annotate libglu-mesa/receipt @ rev 19415
make-slitaz-icons: add multimedia-video-player icon
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sat Sep 24 16:49:43 2016 +0300 (2016-09-24) |
parents | c4f7bb49f2e8 |
children | 0e3538a79c6b |
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" |
pascal@13789 | 15 BUILD_DEPENDS="mesa-dev automake autoconf libtool" |
pascal@13789 | 16 |
pascal@13789 | 17 # Rules to configure and make the package. |
pascal@13789 | 18 compile_rules() |
pascal@13789 | 19 { |
pascal@13789 | 20 cd $src |
pascal@13789 | 21 ./autogen.sh |
pascal@13789 | 22 ./configure \ |
pascal@13789 | 23 --prefix=/usr \ |
pascal@13789 | 24 $CONFIGURE_ARGS && |
pascal@13789 | 25 make $MAKEFLAGS && make install |
pascal@13789 | 26 } |
b1+slitaz@1837 | 27 |
b1+slitaz@1837 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
b1+slitaz@1837 | 29 genpkg_rules() |
b1+slitaz@1837 | 30 { |
b1+slitaz@1837 | 31 mkdir -p $fs/usr/lib |
pascal@13789 | 32 cp -a $install/usr/lib/libGLU*so* $fs/usr/lib |
b1+slitaz@1837 | 33 } |