2007-09-13 00:13:05 +10: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
|
|
|
|
# Depends on: ncurses readline zlib
|
2006-10-29 18:16:17 +01:00
|
|
|
|
|
|
|
name=physfs
|
|
|
|
version=1.0.1
|
|
|
|
release=1
|
2007-09-13 00:13:05 +10:00
|
|
|
source=(http://icculus.org/physfs/downloads/physfs-$version.tar.gz)
|
2006-10-29 18:16:17 +01:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd physfs-$version
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|
2007-09-13 00:13:05 +10:00
|
|
|
|