diff options
Diffstat (limited to 'graphics/PureRef/PureRef.SlackBuild')
-rw-r--r-- | graphics/PureRef/PureRef.SlackBuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/graphics/PureRef/PureRef.SlackBuild b/graphics/PureRef/PureRef.SlackBuild index 4370461be6..a60ad12ebd 100644 --- a/graphics/PureRef/PureRef.SlackBuild +++ b/graphics/PureRef/PureRef.SlackBuild @@ -27,13 +27,13 @@ VERSION=${VERSION:-1.9.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -case "$( uname -m )" in - i?86) ARCH=i586 ; BASENAME=${BASENAME:-PureRef-1.9.2_x86} ;; - x86_64) ARCH=x86_64 ; BASENAME=${BASENAME:-PureRef-1.9.2_x64} ;; - *) echo "Package for $(uname -m) architecture is not available." ; exit 1 ;; -esac +if [ "${ARCH:=$(uname -m)}" != "x86_64" ]; then + echo "$ARCH is not supported." + exit 1 +fi set -e + CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM @@ -42,7 +42,7 @@ OUTPUT=${OUTPUT:-/tmp} rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $PKG -ar p $CWD/$BASENAME.deb data.tar.xz | tar xvJ +ar p $CWD/${PRGNAM}-${VERSION}_x64.deb data.tar.xz | tar xvJ chown -R root:root . find -L . \ |