aboutsummaryrefslogtreecommitdiff
path: root/dev/python/numpy/numpy.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'dev/python/numpy/numpy.SlackBuild')
-rwxr-xr-xdev/python/numpy/numpy.SlackBuild8
1 files changed, 7 insertions, 1 deletions
diff --git a/dev/python/numpy/numpy.SlackBuild b/dev/python/numpy/numpy.SlackBuild
index 2ff9a012..7009dec7 100755
--- a/dev/python/numpy/numpy.SlackBuild
+++ b/dev/python/numpy/numpy.SlackBuild
@@ -137,11 +137,17 @@ numpy:
numpy:
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