blob: 4111262b3bc4b4b41083d1d2953a84b310d59474 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/env -S bash ../.port_include.sh
port=genemu
version=e39f690157d8f969adfbaba30a4e639d20b34768
useconfigure=true
files="https://github.com/rasky/genemu/archive/${version}.tar.gz genemu-${version}.tar.gz 9b9616f6237e621a169422058caeccb2d0f4399374dc38f34837980154c89497"
auth_type=sha256
configopts=("-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt")
depends=("SDL2")
configure() {
run cmake "${configopts[@]}"
}
install() {
run make install
}
|