You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
418 B
15 lines
418 B
|
4 years ago
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
set -e
|
||
|
|
SCRIPTDIR="${BASH_SOURCE[0]}"
|
||
|
|
SCRIPTDIR="$(dirname "${SCRIPTDIR}")"
|
||
|
|
|
||
|
|
cmake -S "${SCRIPTDIR}/../../" \
|
||
|
|
-B build-ps4 \
|
||
|
|
-DCMAKE_BUILD_TYPE=Release \
|
||
|
|
-DCMAKE_VERBOSE_MAKEFILE=ON \
|
||
|
|
-DCMAKE_TOOLCHAIN_FILE="/opt/pacbrew/ps4/openorbis/cmake/ps4.cmake"
|
||
|
|
|
||
|
|
cmake --build build-ps4 -j $(getconf _NPROCESSORS_ONLN)
|
||
|
|
mv build-ps4/IV0001-DVLX00001_00-*.pkg build-ps4/devilutionx.pkg
|