wok-next view irrlicht/receipt @ rev 17853

epdfview: fix rendering of embedded images

used:
http://www.linuxfromscratch.org/patches/blfs/svn/epdfview-0.1.8-fixes-2.patch
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Tue Mar 24 22:35:58 2015 +0100 (2015-03-24)
parents
children 805dd99c3fee
line source
1 # SliTaz package receipt.
3 PACKAGE="irrlicht"
4 VERSION="1.8.1"
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 TARBALL="$PACKAGE-$VERSION.zip"
10 WEB_SITE="http://irrlicht.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="mesa gcc-lib-base libxcb xorg-libXfixes"
14 BUILD_DEPENDS="xorg-dev mesa-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src/source/Irrlicht
20 sed -i "s|^INSTALL_DIR.*|INSTALL_DIR = $DESTDIR/usr/lib|" Makefile
21 make sharedlib &&
22 make &&
23 make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/lib $fs/usr
31 }