physfs: 1.0.1 -> 1.1.0

This commit is contained in:
Danny Rawlins 2007-11-06 11:55:50 +11:00
parent 23fdeded4e
commit 6c185a21a8
3 changed files with 21 additions and 8 deletions

View File

@ -4,8 +4,7 @@ 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
-rw-r--r-- root/root usr/lib/libphysfs.a
lrwxrwxrwx root/root usr/lib/libphysfs-1.1.so.0 -> libphysfs-1.1.so.0.0.0
-rwxr-xr-x root/root usr/lib/libphysfs-1.1.so.0.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-1.1.so.0.0.0

View File

@ -1 +1 @@
d0bd118c6b55fb1e020fe982d6ec6957 physfs-1.0.1.tar.gz
2b5d678d66dcbd03c74440e57c89ca33 physfs-1.1.0.tar.gz

View File

@ -2,17 +2,31 @@
# 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
# Depends on: ncurses readline zlib
# Optional: wxgtk
name=physfs
version=1.0.1
version=1.1.0
release=1
source=(http://icculus.org/physfs/downloads/physfs-$version.tar.gz)
build() {
cd physfs-$version
./configure --prefix=/usr
#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 .
make
make DESTDIR=$PKG install
#make install
}