mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-28 21:54:40 +03:00
16 lines
251 B
Bash
Executable File
16 lines
251 B
Bash
Executable File
#!/bin/sh
|
|
PORT_DIR=SDL
|
|
function fetch() {
|
|
run_fetch_git "https://github.com/SerenityOS/SDL"
|
|
}
|
|
function configure() {
|
|
run_configure_cmake
|
|
}
|
|
function build() {
|
|
run_make
|
|
}
|
|
function install() {
|
|
run_make_install
|
|
}
|
|
source ./.port_include.sh
|