mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
492f7132d2
- Replaced /Root with - Improved documentation. - Removed a few typos. - Replaced with - Added brackets in some cases. Most of the changes were reviewed and applied manually.
19 lines
615 B
Bash
Executable File
19 lines
615 B
Bash
Executable File
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=Super-Mario
|
|
useconfigure=true
|
|
version=git
|
|
depends="SDL2 SDL2_mixer SDL2_image"
|
|
workdir=Super-Mario-Clone-Cpp-master
|
|
configopts="-DCMAKE_TOOLCHAIN_FILE=$SERENITY_SOURCE_DIR/Toolchain/CMake/CMakeToolchain.txt"
|
|
files="https://github.com/Bennyhwanggggg/Super-Mario-Clone-Cpp/archive/refs/heads/master.zip master.zip 11f622721d1ba504acf75c024aa0dbe3"
|
|
auth_type=md5
|
|
|
|
configure() {
|
|
run cmake $configopts
|
|
}
|
|
|
|
install() {
|
|
run mkdir -p "${SERENITY_INSTALL_ROOT}/opt/Super_Mario"
|
|
run cp -r uMario app.ico icon2.ico files "${SERENITY_INSTALL_ROOT}/opt/Super_Mario"
|
|
}
|