wok-next view glu/receipt @ rev 21724

busybox: update configs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:04:25 2020 +0000 (2020-09-01)
parents 5669e8b3be70
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="glu"
4 VERSION="9.0.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Mesa OpenGL Utility library"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://www.mesa3d.org/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/x/glu.html"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="ftp://ftp.freedesktop.org/pub/mesa/glu/$TARBALL"
15 BUILD_DEPENDS="automake autoconf expat-dev libtool libxshmfence-dev
16 mesa-dev xorg-dev"
17 SPLIT="$PACKAGE-dev"
19 compile_rules()
20 {
21 ./configure \
22 --disable-static \
23 $CONFIGURE_ARGS &&
24 fix libtool &&
25 make $MAKEFLAGS &&
26 make install
27 }
29 genpkg_rules()
30 {
31 case $PACKAGE in
32 glu)
33 copy @std
34 DEPENDS="gcc-lib-base glibc-base mesa"
35 PROVIDE="libglu"
36 ;;
37 *-dev)
38 copy @dev
39 ;;
40 esac
41 }