wok view irrlicht/receipt @ rev 22240

updated xorg-presentproto (1.0 -> 1.1)
author Hans-G?nter Theisgen
date Tue Nov 12 09:16:26 2019 +0100 (2019-11-12)
parents a371ce86818b
children ba7cbdb5749c
line source
1 # SliTaz package receipt.
3 PACKAGE="irrlicht"
4 VERSION="1.8.4"
5 CATEGORY="development"
6 SHORT_DESC="High performance realtime 3D engine written in C++."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="zlib/libpng"
9 WEB_SITE="http://irrlicht.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.zip"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS="gcc-lib-base libxcb mesa xorg-libXfixes"
15 BUILD_DEPENDS="mesa-dev xorg-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src/source/Irrlicht
21 sed -i "s|^INSTALL_DIR.*|INSTALL_DIR = $DESTDIR/usr/lib|" Makefile
23 make sharedlib &&
24 make &&
25 make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/lib $fs/usr
33 }