aboutsummaryrefslogtreecommitdiff
path: root/app/backup/tahoe/tahoe.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'app/backup/tahoe/tahoe.SlackBuild')
-rwxr-xr-xapp/backup/tahoe/tahoe.SlackBuild8
1 files changed, 7 insertions, 1 deletions
diff --git a/app/backup/tahoe/tahoe.SlackBuild b/app/backup/tahoe/tahoe.SlackBuild
index a771eb56..05a5ba57 100755
--- a/app/backup/tahoe/tahoe.SlackBuild
+++ b/app/backup/tahoe/tahoe.SlackBuild
@@ -134,11 +134,17 @@ tahoe:
tahoe:
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