mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 11:42:38 +03:00
18 lines
492 B
Bash
Executable File
18 lines
492 B
Bash
Executable File
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=chester
|
|
useconfigure=true
|
|
version=git
|
|
depends="SDL2"
|
|
workdir=chester-public
|
|
configopts="-DCMAKE_TOOLCHAIN_FILE=${SERENITY_SOURCE_DIR}/Toolchain/CMake/CMakeToolchain.txt"
|
|
files="https://github.com/veikkos/chester/archive/public.tar.gz chester.tar.gz b3ea7ad40608e1050fa434258f5c69b93e7bad10523c4c4a86fe08d1442a907b"
|
|
auth_type=sha256
|
|
|
|
configure() {
|
|
run cmake $configopts
|
|
}
|
|
|
|
install() {
|
|
run cp bin/chester "${SERENITY_INSTALL_ROOT}/bin"
|
|
}
|