diff options
author | rudson <rudson@04377dda-e619-0410-9926-eae83683ac58> | 2007-12-24 21:50:57 +0000 |
---|---|---|
committer | rudson <rudson@04377dda-e619-0410-9926-eae83683ac58> | 2007-12-24 21:50:57 +0000 |
commit | f144105f726e4213b449b95ea94d31bcaef3606c (patch) | |
tree | 2068eb0e6b48fd42662c684bc40ec6a9bb1d6d90 /trunk/mkbuild | |
parent | 24408f81d73eed8c3e9a2d59bc8cd6d742e3688d (diff) | |
download | simplepkg-f144105f726e4213b449b95ea94d31bcaef3606c.tar.gz simplepkg-f144105f726e4213b449b95ea94d31bcaef3606c.tar.bz2 |
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@478 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'trunk/mkbuild')
-rw-r--r-- | trunk/mkbuild/generic.mkSlackBuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/trunk/mkbuild/generic.mkSlackBuild b/trunk/mkbuild/generic.mkSlackBuild index e655a15..a71a225 100644 --- a/trunk/mkbuild/generic.mkSlackBuild +++ b/trunk/mkbuild/generic.mkSlackBuild @@ -1,7 +1,7 @@ ################################################################# ## Generic template for SlackBuilds ## -## Version 0.9.3 - Luis ( luis at riseup d0t net) +## Version 0.9.4 - Luis ( luis at riseup d0t net) ## Alves ( rudsonalves at yahoo d0t com d0t br ) ################################################################# #!/bin/bash @@ -142,7 +142,7 @@ gpg --verify "$SRC_DIR/$SRC.sig" "$SRC_DIR/$SRC" || exit $ERROR_GPG # Untar cd "$PKG_WORK" [[UNPACKER]] [[UNPACKER FLAGS]] "$SRC_DIR/$SRC" || exit $ERROR_TAR -PKG_SRC=`ls -l | awk '/^d/ { print $8 }'` +PKG_SRC="$PWD/`ls -l | awk '/^d/ { print $8 }'`" cd "$PKG_SRC" </untar_source> |