diff options
Diffstat (limited to 'dev/perl/perl-mail-spamassassin')
-rwxr-xr-x | dev/perl/perl-mail-spamassassin/perl-mail-spamassassin.SlackBuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/dev/perl/perl-mail-spamassassin/perl-mail-spamassassin.SlackBuild b/dev/perl/perl-mail-spamassassin/perl-mail-spamassassin.SlackBuild index 975ba1dc..c3e9dd42 100755 --- a/dev/perl/perl-mail-spamassassin/perl-mail-spamassassin.SlackBuild +++ b/dev/perl/perl-mail-spamassassin/perl-mail-spamassassin.SlackBuild @@ -146,11 +146,17 @@ perl-mail-spamassassin: perl-mail-spamassassin: 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 |