contrib/physfs/Pkgfile

22 lines
582 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: UNMAINTAINED
2006-10-29 18:16:17 +01:00
name=physfs
2022-11-13 21:31:08 +01:00
version=3.2.0
2006-10-29 18:16:17 +01:00
release=1
source=(https://github.com/icculus/$name/archive/release-$version/$name-$version.tar.gz)
2006-10-29 18:16:17 +01:00
build() {
cmake -S $name-release-$version -B build -G Ninja \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
-D PHYSFS_BUILD_TEST=OFF \
-Wno-dev
2007-11-06 01:55:50 +01:00
ninja -C build -j ${JOBS:-1}
DESTDIR=$PKG cmake --install build
2006-10-29 18:16:17 +01:00
}