mirror of
https://github.com/RGBCube/serenity
synced 2025-07-29 23:17:46 +00:00
Ports: Make array-like settings actual arrays
We may need entries with spaces in makeopts, installopts, and configopts, and at that point we should also convert depends and auth_opts to avoid confusion.
This commit is contained in:
parent
e507cfcdb0
commit
c07f91474d
149 changed files with 352 additions and 345 deletions
|
@ -2,10 +2,10 @@
|
|||
port=hatari
|
||||
useconfigure=true
|
||||
version=2.4.0-devel
|
||||
depends="SDL2 zlib"
|
||||
depends=("SDL2" "zlib")
|
||||
commit=353379e1f8a847cc0e284541d2b40fd49d175d22
|
||||
workdir="${port}-${commit}"
|
||||
configopts="-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt"
|
||||
configopts=("-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt")
|
||||
files="https://github.com/hatari/hatari/archive/${commit}.tar.gz ${commit}.tar.gz 617f95b30c4e590bb61ddcc1dafc22f4bf270377caa7aa5867f3f7413250b538"
|
||||
auth_type=sha256
|
||||
launcher_name=Hatari
|
||||
|
@ -13,7 +13,7 @@ launcher_category=Games
|
|||
launcher_command=hatari
|
||||
|
||||
configure() {
|
||||
run cmake $configopts
|
||||
run cmake "${configopts[@]}"
|
||||
}
|
||||
|
||||
install() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue