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