physfs: 1.0.1 -> 2.0.0

This commit is contained in:
Danny Rawlins 2009-04-04 13:19:25 +11:00
parent a3604f954c
commit df2ff7754b
3 changed files with 11 additions and 23 deletions

View File

@ -4,7 +4,6 @@ drwxr-xr-x root/root usr/bin/
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/physfs.h
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libphysfs-1.0.so.1 -> libphysfs-1.0.so.1.0.0
-rwxr-xr-x root/root usr/lib/libphysfs-1.0.so.1.0.0
-rwxr-xr-x root/root usr/lib/libphysfs.la
lrwxrwxrwx root/root usr/lib/libphysfs.so -> libphysfs-1.0.so.1.0.0
lrwxrwxrwx root/root usr/lib/libphysfs.so -> libphysfs.so.1
lrwxrwxrwx root/root usr/lib/libphysfs.so.1 -> libphysfs.so.2.0.0
-rwxr-xr-x root/root usr/lib/libphysfs.so.2.0.0

View File

@ -1 +1 @@
d0bd118c6b55fb1e020fe982d6ec6957 physfs-1.0.1.tar.gz
cfc53e0c193914c9c5ab522e58737373 physfs-2.0.0.tar.gz

View File

@ -2,32 +2,21 @@
# URL: http://icculus.org/physfs/
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
# Packager: Mark Rosenstand, mark at borkware dot net
# Depends on: ncurses readline zlib
# Depends on: ncurses readline zlib cmake
# Optional: wxgtk
name=physfs
version=1.0.1
version=2.0.0
release=1
source=(http://icculus.org/physfs/downloads/physfs-$version.tar.gz)
source=(http://icculus.org/$name/downloads/$name-$version.tar.gz)
build() {
cd physfs-$version
cd $name-$version
#version 1.1.0 breaks warzone2100
#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 .
cmake \
-DPHYSFS_BUILD_STATIC=FALSE \
-DCMAKE_INSTALL_PREFIX=/usr .
make
make DESTDIR=$PKG install
#make install
}