mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-04 05:20:30 +00:00
17 lines
371 B
Bash
Executable file
17 lines
371 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
|
|
port="genemu"
|
|
version=git
|
|
workdir="${port}-master"
|
|
useconfigure=true
|
|
files="https://github.com/rasky/genemu/archive/master.tar.gz ${version}.tar.gz"
|
|
configopts="-DCMAKE_TOOLCHAIN_FILE=${SERENITY_ROOT}/Toolchain/CMakeToolchain.txt"
|
|
depends="SDL2"
|
|
|
|
configure() {
|
|
run cmake ${configopts}
|
|
}
|
|
|
|
install() {
|
|
run make install
|
|
}
|