wok-next view physfs/receipt @ rev 6928

Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Oct 22 22:36:22 2010 +0000 (2010-10-22)
parents
children 7a849d93caa3
line source
1 # SliTaz package receipt.
3 PACKAGE="physfs"
4 VERSION="2.0.1"
5 CATEGORY="development"
6 SHORT_DESC="Abstraction layer for filesystem and archive access"
7 MAINTAINER="devl547@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://icculus.org/physfs/"
10 WGET_URL="ftp://ftp.tiscali.nl/pub/mirror/gentoo/distfiles/$TARBALL"
11 BUILD_DEPENDS="cmake"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 cmake $src &&
18 cmake -DCMAKE_INSTALL_PREFIX=/usr \
19 -DPHYSFS_BUILD_SHARED=ON \
20 -DPHYSFS_BUILD_TEST=OFF \
21 -DPHYSFS_BUILD_WX_TEST=OFF \
22 -DPHYSFS_INTERNAL_ZLIB=OFF . &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 }