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

Ports: Add ProTracker 2 clone

This commit is contained in:
TheMorc 2021-01-22 14:05:48 +01:00 committed by Andreas Kling
parent b56ef9042b
commit ffc51853bf
5 changed files with 116 additions and 0 deletions

16
Ports/pt2-clone/package.sh Executable file
View file

@ -0,0 +1,16 @@
#!/bin/bash ../.port_include.sh
port=pt2-clone
version=1.28
workdir=pt2-clone-$version
useconfigure=true
files="https://github.com/8bitbubsy/pt2-clone/archive/v${version}.tar.gz v${version}.tar.gz"
configopts="-DCMAKE_TOOLCHAIN_FILE=$SERENITY_ROOT/Toolchain/CMakeToolchain.txt"
depends="SDL2"
configure() {
run cmake $configopts
}
install() {
run make install
}