diff options
author | rafael2k <rafael2k@370017ae-e619-0410-ac65-c121f96126d4> | 2009-02-17 13:56:35 +0000 |
---|---|---|
committer | rafael2k <rafael2k@370017ae-e619-0410-ac65-c121f96126d4> | 2009-02-17 13:56:35 +0000 |
commit | 31b52db3d69b16553cb99158dce4a3c3defd1ea1 (patch) | |
tree | 37b0a450e59c588bcfc95f6950339d552b353590 /app/emulation/wine/wine.SlackBuild | |
parent | 33733ef3fb784cb3bce836243d69951585fc3647 (diff) | |
download | slackbuilds-31b52db3d69b16553cb99158dce4a3c3defd1ea1.tar.gz slackbuilds-31b52db3d69b16553cb99158dce4a3c3defd1ea1.tar.bz2 |
wine version bump
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@2106 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'app/emulation/wine/wine.SlackBuild')
-rwxr-xr-x | app/emulation/wine/wine.SlackBuild | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/app/emulation/wine/wine.SlackBuild b/app/emulation/wine/wine.SlackBuild index 9473078b..043af638 100755 --- a/app/emulation/wine/wine.SlackBuild +++ b/app/emulation/wine/wine.SlackBuild @@ -16,7 +16,8 @@ # # slackbuild for wine, by Rudson R. Alves # requires: -# tested: wine-1.0.1 +# tested: wine-1.1.15 +# model: generic.mkSlackBuild $Rev: 784 $ # # Look for slackbuildrc @@ -31,7 +32,7 @@ CWD="$(pwd)" SRC_NAME="wine" PKG_NAME="wine" ARCH=${ARCH:=i486} -SRC_VERSION=${VERSION:=1.0.1} +SRC_VERSION=${VERSION:=1.1.15} PKG_VERSION="$(echo "$SRC_VERSION" | tr '[[:blank:]-]' '_')" BUILD=${BUILD:=1rra} SRC_DIR=${SRC_DIR:=$CWD}/$PKG_NAME @@ -89,6 +90,15 @@ fi # Check Manifest file if [ -e "$CWD/Manifest" ]; then + # Manifest signature checking + if grep -q -- "-----BEGIN PGP SIGNED MESSAGE-----" $CWD/Manifest; then + echo "Checking Manifest signature..." + gpg --verify $CWD/Manifest + if [ "$?" != "0" ]; then + exit $ERROR_MANIFEST + fi + fi + MANIFEST_LINES="`grep -E -v "^(MKBUILD|SLACKBUILD)" $CWD/Manifest | wc -l`" for ((MANIFEST_COUNT=1; MANIFEST_COUNT <= $MANIFEST_LINES; MANIFEST_COUNT++)); do |