contrib/physfs/Pkgfile

33 lines
721 B
Plaintext
Raw Normal View History

2007-09-12 16:13:05 +02:00
# Description: Library to provide abstract access to various archives.
# URL: http://icculus.org/physfs/
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
# Packager: Mark Rosenstand, mark at borkware dot net
2007-11-06 01:55:50 +01:00
# Depends on: ncurses readline zlib
# Optional: wxgtk
2006-10-29 18:16:17 +01:00
name=physfs
2007-11-06 01:55:50 +01:00
version=1.1.0
2006-10-29 18:16:17 +01:00
release=1
2007-09-12 16:13:05 +02:00
source=(http://icculus.org/physfs/downloads/physfs-$version.tar.gz)
2006-10-29 18:16:17 +01:00
build() {
cd physfs-$version
2007-11-06 01:55:50 +01:00
#version 1.1.1 moves to cmake that isn't deemed ready to use yet.
#export CFLAGS="$CFLAGS -fno-strict-aliasing"
./configure \
--prefix=/usr \
--disable-static
#cmake \
# -DPHYSFS_BUILD_STATIC=FALSE \
# -DCMAKE_INSTALL_PREFIX=$PKG/usr .
2006-10-29 18:16:17 +01:00
make
make DESTDIR=$PKG install
2007-11-06 01:55:50 +01:00
#make install
2006-10-29 18:16:17 +01:00
}
2007-09-12 16:13:05 +02:00