blob: 239e44d58b7e34540711526c7f1f03677ba60d2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/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
|