diff options
Diffstat (limited to 'x11/libs/ewl/ewl.SlackBuild')
-rwxr-xr-x | x11/libs/ewl/ewl.SlackBuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/x11/libs/ewl/ewl.SlackBuild b/x11/libs/ewl/ewl.SlackBuild index 381b64f2..8fe9482a 100755 --- a/x11/libs/ewl/ewl.SlackBuild +++ b/x11/libs/ewl/ewl.SlackBuild @@ -150,11 +150,17 @@ ewl: ewl: 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 |