2021-03-30 17:38:10 +00:00
|
|
|
#!/usr/bin/env -S bash ../.port_include.sh
|
2021-03-16 20:53:13 +00:00
|
|
|
port=hatari
|
|
|
|
useconfigure=true
|
|
|
|
version=2.4.0-devel
|
2021-09-26 22:16:18 +00:00
|
|
|
depends=("SDL2" "zlib")
|
2022-04-01 01:12:37 +00:00
|
|
|
commit=6a86f054cc560a858bbe60c7529dafe2cf6ec604
|
2021-03-16 20:53:13 +00:00
|
|
|
workdir="${port}-${commit}"
|
2021-09-26 22:16:18 +00:00
|
|
|
configopts=("-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt")
|
2022-04-01 01:12:37 +00:00
|
|
|
files="https://github.com/hatari/hatari/archive/${commit}.tar.gz ${commit}.tar.gz bcb5d2e3bf3a3f8b34d21565354aa8eb085e3d92eb466c5d28e42e2022e7da3d"
|
2021-04-25 10:20:15 +00:00
|
|
|
auth_type=sha256
|
2021-04-20 16:36:03 +00:00
|
|
|
launcher_name=Hatari
|
|
|
|
launcher_category=Games
|
|
|
|
launcher_command=hatari
|
2021-03-16 20:53:13 +00:00
|
|
|
|
|
|
|
configure() {
|
2021-09-26 22:16:18 +00:00
|
|
|
run cmake "${configopts[@]}"
|
2021-03-16 20:53:13 +00:00
|
|
|
}
|
2021-05-01 21:22:27 +00:00
|
|
|
|
|
|
|
install() {
|
|
|
|
run make install
|
|
|
|
}
|