wok-next view irrlicht/receipt @ rev 21721

created recipes for efivar and efibootmgr
author Hans-G?nter Theisgen
date Tue Sep 01 10:09:15 2020 +0100 (2020-09-01)
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 }