mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
d89a58216d
Upgrade patches to git style, add ReadMe.md and remove from the list of ports missing descriptions.
16 lines
446 B
Bash
Executable file
16 lines
446 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=pt2-clone
|
|
version=1.43
|
|
useconfigure=true
|
|
files="https://github.com/8bitbubsy/pt2-clone/archive/v${version}.tar.gz v${version}.tar.gz 760c1545105fbf3798fd101c6f213e0fd60943869023ef735f16f4b35221e007"
|
|
auth_type=sha256
|
|
configopts=("-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt")
|
|
depends=("SDL2")
|
|
|
|
configure() {
|
|
run cmake "${configopts[@]}"
|
|
}
|
|
|
|
install() {
|
|
run make install
|
|
}
|