mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:17:35 +00:00
Ports: Use makeopts in RVVM port
This commit is contained in:
parent
1a3009fa2b
commit
9fe6dcb50b
1 changed files with 8 additions and 7 deletions
|
@ -7,10 +7,11 @@ auth_type='sha256'
|
||||||
workdir="RVVM-${version}"
|
workdir="RVVM-${version}"
|
||||||
depends=('sdl12-compat')
|
depends=('sdl12-compat')
|
||||||
|
|
||||||
build() {
|
build_opts=(
|
||||||
run make OS=SerenityOS USE_SDL=1 USE_NET=1 GIT_COMMIT=76796ba all lib
|
'GIT_COMMIT=76796ba'
|
||||||
}
|
'OS=SerenityOS'
|
||||||
|
'USE_NET=1'
|
||||||
install() {
|
'USE_SDL=1'
|
||||||
run make OS=SerenityOS USE_SDL=1 USE_NET=1 GIT_COMMIT=76796ba DESTDIR="${DESTDIR}" install
|
)
|
||||||
}
|
makeopts+=("${build_opts[@]}" 'all' 'lib')
|
||||||
|
installopts+=("${build_opts[@]}")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue