wok view 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
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="https://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 file"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./autogen.sh
21 ./configure \
22 --prefix=/usr \
23 $CONFIGURE_ARGS &&
24 make $MAKEFLAGS && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib/libGLU*so* $fs/usr/lib
32 }