diff options
Diffstat (limited to 'www/apps/tracpageauthzeditor/TracPageAuthzEditor.SlackBuild')
-rwxr-xr-x | www/apps/tracpageauthzeditor/TracPageAuthzEditor.SlackBuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/www/apps/tracpageauthzeditor/TracPageAuthzEditor.SlackBuild b/www/apps/tracpageauthzeditor/TracPageAuthzEditor.SlackBuild index 43cbafb4..5ab307a6 100755 --- a/www/apps/tracpageauthzeditor/TracPageAuthzEditor.SlackBuild +++ b/www/apps/tracpageauthzeditor/TracPageAuthzEditor.SlackBuild @@ -140,11 +140,17 @@ TracPageAuthzEditor: TracPageAuthzEditor: EODESC +# Copy slack-required +mkdir -p "$PKG/install" || exit $ERROR_MKDIR +if [ -f "$CWD/slack-required" ]; then + cp $CWD/slack-required $PKG/install +fi + # Build the package cd "$PKG" makepkg -l y -c n "$REPOS/$PKG_NAME-$PKG_VERSION-$ARCH-$BUILD.tgz" || exit $ERROR_MKPKG # Delete source and build directories if requested -if [ "$CLEANUP" == "yes" ]; then +if [ "$CLEANUP" == "yes" ] || [ "$1" = "--cleanup" ]; then rm -rf "$PKG_WORK" "$PKG" fi |