17 lines
394 B
Plaintext
17 lines
394 B
Plaintext
# Description: Library to provide abstract access to various archives
|
|
# URL: http://icculus.org/physfs/
|
|
# Maintainer: Mark Rosenstand, mark at borkware dot net
|
|
# Depends on: ncurses, readline, zlib
|
|
|
|
name=physfs
|
|
version=1.0.1
|
|
release=1
|
|
source=(http://icculus.org/physfs/downloads/physfs-1.0.1.tar.gz)
|
|
|
|
build() {
|
|
cd physfs-$version
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|