diff options
author | Antonio Hernández Blas <hba.nihilismus@gmail.com> | 2010-07-02 19:32:01 -0500 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-07-03 02:31:43 -0500 |
commit | 5e0d3a2f61d50efe401436f89657e14b14b66a33 (patch) | |
tree | fd6285077dcd0485963b2eecf8dc7d808a3d3bd9 /development/eclipse/eclipse.SlackBuild | |
parent | 00377bb4afe8129f154c8772be4dce0671ad09d8 (diff) | |
download | slackbuilds-5e0d3a2f61d50efe401436f89657e14b14b66a33.tar.gz |
development/eclipse: Updated for version 3.6.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'development/eclipse/eclipse.SlackBuild')
-rw-r--r-- | development/eclipse/eclipse.SlackBuild | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/development/eclipse/eclipse.SlackBuild b/development/eclipse/eclipse.SlackBuild index 00209472d6..7031ff0aa7 100644 --- a/development/eclipse/eclipse.SlackBuild +++ b/development/eclipse/eclipse.SlackBuild @@ -24,11 +24,18 @@ # This script is just a binary repackaging. PRGNAM=eclipse -VERSION=3.5.2 -ARCH=${ARCH:-i586} +VERSION=3.6 BUILD=${BUILD:-1} TAG=${TAG:-_SBo} +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM @@ -43,14 +50,14 @@ cd $PKG/opt # Untar source code tarball according with ARCH value # ARCH can be 'i586' or 'x86_64' if [ "$ARCH" = "x86_64" ]; then - tar xvf $CWD/$PRGNAM-SDK-$VERSION-linux-gtk-$ARCH.tar.gz || exit 1 + tar xvf $CWD/$PRGNAM-SDK-$VERSION-linux-gtk-$ARCH.tar.gz +elif [ "$ARCH" = "i586" ]; then + tar xvf $CWD/$PRGNAM-SDK-$VERSION-linux-gtk.tar.gz else - tar xvf $CWD/$PRGNAM-SDK-$VERSION-linux-gtk.tar.gz || exit 1 - ARCH=i586 + printf "$ARCH is not supported...\n" ; exit 1 fi chown -R root:root . - find . \ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ -exec chmod 755 {} \; -o \ |