wok annotate libglu-mesa/receipt @ rev 20741

barnyard2: added build dependency libtool
author Hans-G?nter Theisgen
date Sun Feb 10 09:22:29 2019 +0100 (2019-02-10)
parents 0e3538a79c6b
children 4ce52a0b72fd
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"
pascal@20669 10 WEB_SITE="https://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@20583 15 BUILD_DEPENDS="mesa-dev automake autoconf libtool file"
pascal@13789 16
pascal@13789 17 # Rules to configure and make the package.
pascal@13789 18 compile_rules()
pascal@13789 19 {
pascal@13789 20 ./autogen.sh
pascal@13789 21 ./configure \
pascal@13789 22 --prefix=/usr \
pascal@13789 23 $CONFIGURE_ARGS &&
pascal@13789 24 make $MAKEFLAGS && make install
pascal@13789 25 }
b1+slitaz@1837 26
b1+slitaz@1837 27 # Rules to gen a SliTaz package suitable for Tazpkg.
b1+slitaz@1837 28 genpkg_rules()
b1+slitaz@1837 29 {
b1+slitaz@1837 30 mkdir -p $fs/usr/lib
pascal@13789 31 cp -a $install/usr/lib/libGLU*so* $fs/usr/lib
b1+slitaz@1837 32 }