serenity/Ports/SDL2/SDL2.sh
Robin Burchell 9a284ad3f7 Move everything to a subdirectory
Also don't run cd for the initial git clone (DERP!), and other bash port fixes.
2019-05-28 03:07:18 +02:00

16 lines
252 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