aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
Diffstat (limited to 'testing')
-rw-r--r--testing/physfs/APKBUILD11
1 files changed, 4 insertions, 7 deletions
diff --git a/testing/physfs/APKBUILD b/testing/physfs/APKBUILD
index 08e5a7b3db..43e4d2e3d5 100644
--- a/testing/physfs/APKBUILD
+++ b/testing/physfs/APKBUILD
@@ -2,15 +2,15 @@
# Maintainer:
pkgname=physfs
pkgver=3.0.2
-pkgrel=0
+pkgrel=1
pkgdesc="Library providing access to various archives, for use in video games"
url="https://icculus.org/physfs/"
arch="all"
license="Zlib"
-depends_dev="ncurses-dev"
-makedepends="cmake $depends_dev"
+makedepends="cmake"
subpackages="$pkgname-static $pkgname-dev"
source="https://icculus.org/physfs/downloads/physfs-$pkgver.tar.bz2"
+options="!check" # no tests
build() {
if [ "$CBUILD" != "$CHOST" ]; then
@@ -23,14 +23,11 @@ build() {
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_FLAGS="$CXXFLAGS" \
-DCMAKE_C_FLAGS="$CFLAGS" \
+ -DPHYSFS_BUILD_TEST=OFF \
$CMAKE_CROSSOPTS
make
}
-check() {
- make test_physfs
-}
-
package() {
make DESTDIR="$pkgdir" install
}