diff --git a/ports/install.sh b/ports/install.sh index 05642838..6d510458 100755 --- a/ports/install.sh +++ b/ports/install.sh @@ -77,10 +77,22 @@ build() { done } +pre_install() { + : +} + +post_install() { + : +} + install() { + pre_install + for target in "${MAKE_INSTALL_TARGETS[@]}"; do make $target "DESTDIR=$BANAN_SYSROOT" || exit 1 done + + post_install } source $1