Ports: Fix RVVM port syntax
This commit is contained in:
parent
12730cefce
commit
1a3009fa2b
Notes:
sideshowbarker
2024-07-17 06:40:35 +09:00
Author: https://github.com/LekKit Commit: https://github.com/SerenityOS/serenity/commit/1a3009fa2b Pull-request: https://github.com/SerenityOS/serenity/pull/18462 Reviewed-by: https://github.com/gmta ✅
1 changed files with 3 additions and 3 deletions
|
@ -1,10 +1,10 @@
|
|||
#!/usr/bin/env -S bash ../.port_include.sh
|
||||
port='rvvm'
|
||||
version='0.5'
|
||||
archive_hash=3a1dbb91ad04f068078bc6c6c27cc5792eebc111907cb5a14bde158fe6e757c9
|
||||
files="https://github.com/LekKit/RVVM/archive/v$version.tar.gz rvvm.tar.gz $archive_hash"
|
||||
archive_hash='3a1dbb91ad04f068078bc6c6c27cc5792eebc111907cb5a14bde158fe6e757c9'
|
||||
files="https://github.com/LekKit/RVVM/archive/v${version}.tar.gz rvvm.tar.gz ${archive_hash}"
|
||||
auth_type='sha256'
|
||||
workdir="RVVM-$version"
|
||||
workdir="RVVM-${version}"
|
||||
depends=('sdl12-compat')
|
||||
|
||||
build() {
|
||||
|
|
Loading…
Add table
Reference in a new issue