mirror of
https://github.com/RGBCube/serenity
synced 2025-07-14 07:57:35 +00:00
15 lines
211 B
Bash
Executable file
15 lines
211 B
Bash
Executable file
#!/bin/sh
|
|
PORT_DIR=SDL
|
|
fetch() {
|
|
run_fetch_git "https://github.com/SerenityOS/SDL"
|
|
}
|
|
configure() {
|
|
run_configure_cmake
|
|
}
|
|
build() {
|
|
run_make
|
|
}
|
|
install() {
|
|
run_make_install
|
|
}
|
|
. ../.port_include.sh
|