diff options
Diffstat (limited to 'Ports/SDL2/SDL2.sh')
-rwxr-xr-x | Ports/SDL2/SDL2.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Ports/SDL2/SDL2.sh b/Ports/SDL2/SDL2.sh new file mode 100755 index 0000000000..239e44d58b --- /dev/null +++ b/Ports/SDL2/SDL2.sh @@ -0,0 +1,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 |