2021-03-30 17:38:10 +00:00
|
|
|
#!/usr/bin/env -S bash ../.port_include.sh
|
2022-06-03 18:30:00 +00:00
|
|
|
port='pt2-clone'
|
|
|
|
version='1.49'
|
|
|
|
files="https://github.com/8bitbubsy/pt2-clone/archive/v${version}.tar.gz v${version}.tar.gz c2e796b25aba625551c50b2c0743ccc83b007d2eeac2f5eaad870b60f5a1554b"
|
|
|
|
auth_type='sha256'
|
|
|
|
useconfigure='true'
|
2021-09-26 22:16:18 +00:00
|
|
|
configopts=("-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt")
|
|
|
|
depends=("SDL2")
|
2021-01-22 13:05:48 +00:00
|
|
|
|
|
|
|
configure() {
|
2021-09-26 22:16:18 +00:00
|
|
|
run cmake "${configopts[@]}"
|
2021-01-22 13:05:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
install() {
|
|
|
|
run make install
|
|
|
|
}
|