blob: 52fb86c0dd5b7772077834864f0fe4bd8ef006f3 (
plain)
1
2
3
4
5
6
7
|
pkg:setup
mkdir "macbuild" && cd macbuild
args = std_cmake_args
args << "-DPHYSFS_BUILD_TEST=TRUE"
args << "-DPHYSFS_BUILD_WX_TEST=FALSE" unless build.head?
cmake .. *args
make DESTDIR=${PKG_DEST} install
|