diff options
author | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2008-11-27 16:05:54 +0000 |
---|---|---|
committer | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2008-11-27 16:05:54 +0000 |
commit | 2cd81aedce1f3e0cf3a1c597e2420110a5a7894a (patch) | |
tree | 7fe740917fbb54b8e10e42c40bcd69d27bed6ff3 /media/video/theorur | |
parent | acbbe3011c0d08bf44de093f9d9cd3a1d08ac14a (diff) | |
download | slackbuilds-2cd81aedce1f3e0cf3a1c597e2420110a5a7894a.tar.gz slackbuilds-2cd81aedce1f3e0cf3a1c597e2420110a5a7894a.tar.bz2 |
packages now shipping with slack-required
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@1980 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'media/video/theorur')
-rwxr-xr-x | media/video/theorur/theorur.SlackBuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/media/video/theorur/theorur.SlackBuild b/media/video/theorur/theorur.SlackBuild index fb21cb16..e158c42c 100755 --- a/media/video/theorur/theorur.SlackBuild +++ b/media/video/theorur/theorur.SlackBuild @@ -103,10 +103,16 @@ make $NUMJOBS || exit $ERROR_MAKE strip theorur make make_pkg +# 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 mv *-1rd.tgz $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 |