1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-30 00:37:36 +00:00

Ports: Add MilkyTracker port

This commit is contained in:
jake.westrip 2021-04-27 18:34:53 +10:00 committed by Andreas Kling
parent d1f33ec795
commit f4a05611c6
8 changed files with 209 additions and 0 deletions

16
Ports/milkytracker/package.sh Executable file
View file

@ -0,0 +1,16 @@
#!/bin/bash ../.port_include.sh
port=milkytracker
version=1.03.00
workdir=MilkyTracker-$version
useconfigure=true
files="https://github.com/milkytracker/MilkyTracker/archive/v$version.tar.gz MilkyTracker-$version.tar.gz 72d5357e303380b52383b66b51f944a77cd77e2b3bfeb227d87cc0e72ab292f7"
auth_type=sha256
configopts="-DCMAKE_TOOLCHAIN_FILE=$SERENITY_ROOT/Toolchain/CMake/CMakeToolchain.txt"
depends="SDL2 zlib"
launcher_name="MilkyTracker"
launcher_category=Sound
launcher_command=/usr/local/bin/milkytracker
configure() {
run cmake $configopts
}