summaryrefslogtreecommitdiff
path: root/Ports/SDL2/SDL2.sh
blob: f21cc24604df94e5099ddcc43793958d71e90b83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
PORT_DIR=SDL
fetch() {
    run_fetch_git "https://github.com/SerenityOS/SDL"
}
configure() {
    CMAKEOPTS="-DPULSEAUDIO=OFF"
    run_configure_cmake
}
build() {
    run_make
}
install() {
    run_make_install
}
. ../.port_include.sh