wok-next view irrlicht/receipt @ rev 21087

Updates...
Revert names: libsdl -> sdl, libsmpeg -> smpeg, libtdb -> tdb
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Dec 28 05:11:49 2018 +0200 (2018-12-28)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
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 BUILD_DEPENDS="xorg-dev mesa-dev"
15 SPLIT="$PACKAGE-dev"
17 compile_rules() {
18 cd $src/source/Irrlicht
19 sed -i "s|^INSTALL_DIR.*|INSTALL_DIR = $install/usr/lib|" Makefile
20 make sharedlib &&
21 make &&
22 make install
23 }
25 genpkg_rules() {
26 case $PACKAGE in
27 irrlicht)
28 copy @std
29 DEPENDS="mesa gcc-lib-base libxcb libxfixes"
30 ;;
31 *-dev)
32 copy @dev
33 ;;
34 esac
35 }