wok view opencsg/receipt @ rev 17413

trickle: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 29 13:37:18 2014 +0100 (2014-11-29)
parents
children 3705d68ed8f3
line source
1 # SliTaz package receipt.
3 PACKAGE="opencsg"
4 SOURCE="OpenCSG"
5 VERSION="1.4.0"
6 CATEGORY="graphics"
7 SHORT_DESC="The CSG rendering library."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL2"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://www.opencsg.org/"
12 WGET_URL="${WEB_SITE}$TARBALL"
14 DEPENDS="glew mesa"
15 BUILD_DEPENDS="glew-dev mesa-dev freeglut-dev"
17 # Rules to configure and make the package.
18 #
19 compile_rules()
20 {
21 for i in /usr/lib /usr/bin /bin /usr/include ; do
22 mkdir -p $DESTDIR$i
23 done
24 find -name Makefile | xargs sed -i 's|usr/local|usr|'
25 make -j 1 &&
26 make INSTALL_ROOT=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/lib $fs/usr
34 }