wok view libglu-mesa/receipt @ rev 20497

updated diffutils (3.3 -> 3.6)
author Hans-G?nter Theisgen
date Mon Oct 29 16:27:52 2018 +0100 (2018-10-29)
parents c4f7bb49f2e8
children 0e3538a79c6b
line source
1 # SliTaz package receipt.
3 PACKAGE="libglu-mesa"
4 VERSION="9.0.0"
5 CATEGORY="x-window"
6 SHORT_DESC="OpenGL utility 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/glu.git"
12 PROVIDE="libglu"
14 DEPENDS="glibc-base gcc-lib-base mesa"
15 BUILD_DEPENDS="mesa-dev automake autoconf libtool"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./autogen.sh
22 ./configure \
23 --prefix=/usr \
24 $CONFIGURE_ARGS &&
25 make $MAKEFLAGS && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/lib/libGLU*so* $fs/usr/lib
33 }