Ports: Use makeopts in RVVM port
This commit is contained in:
parent
1a3009fa2b
commit
9fe6dcb50b
Notes:
sideshowbarker
2024-07-17 00:57:24 +09:00
Author: https://github.com/LekKit Commit: https://github.com/SerenityOS/serenity/commit/9fe6dcb50b Pull-request: https://github.com/SerenityOS/serenity/pull/18462 Reviewed-by: https://github.com/gmta ✅
1 changed files with 8 additions and 7 deletions
|
@ -7,10 +7,11 @@ auth_type='sha256'
|
|||
workdir="RVVM-${version}"
|
||||
depends=('sdl12-compat')
|
||||
|
||||
build() {
|
||||
run make OS=SerenityOS USE_SDL=1 USE_NET=1 GIT_COMMIT=76796ba all lib
|
||||
}
|
||||
|
||||
install() {
|
||||
run make OS=SerenityOS USE_SDL=1 USE_NET=1 GIT_COMMIT=76796ba DESTDIR="${DESTDIR}" install
|
||||
}
|
||||
build_opts=(
|
||||
'GIT_COMMIT=76796ba'
|
||||
'OS=SerenityOS'
|
||||
'USE_NET=1'
|
||||
'USE_SDL=1'
|
||||
)
|
||||
makeopts+=("${build_opts[@]}" 'all' 'lib')
|
||||
installopts+=("${build_opts[@]}")
|
||||
|
|
Loading…
Add table
Reference in a new issue