diff options
author | Johannes Schoepfer <slackbuilds@schoepfer.info> | 2020-01-12 14:46:15 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-01-12 14:46:15 +0700 |
commit | 72eb9f208b4f2e7f076b2eacb1dde89e26e824e2 (patch) | |
tree | fd8fed8b502bddc013dda1f48b08358b5afc5e81 /libraries/ode | |
parent | 668cd831a191f93585a8691de3e64e34bc3f08f8 (diff) | |
download | slackbuilds-72eb9f208b4f2e7f076b2eacb1dde89e26e824e2.tar.gz |
libraries/ode: Updated for version 0.16.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/ode')
-rw-r--r-- | libraries/ode/ode.SlackBuild | 39 | ||||
-rw-r--r-- | libraries/ode/ode.info | 8 |
2 files changed, 30 insertions, 17 deletions
diff --git a/libraries/ode/ode.SlackBuild b/libraries/ode/ode.SlackBuild index d97ddb3073..79da31e43c 100644 --- a/libraries/ode/ode.SlackBuild +++ b/libraries/ode/ode.SlackBuild @@ -1,23 +1,36 @@ #!/bin/sh -## Written by hollywoodb (hollywoodb@fastmail.fm) - -## Feel free to use, modify, redistribute this script. -## If you make changes please modify the "Written by" -## so that I don't recieve emails about a script I -## did not write. Thanks. - +# Copyright 2020 Johannes Schoepfer, Germany +# All rights reserved. +# Written by hollywoodb # Modified by the SlackBuilds.org project -# Updated by Alex Word <alex_word86@yahoo.com> +# Updated by Alex Word +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=ode -VERSION=${VERSION:-0.13} +VERSION=${VERSION:-0.16} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -28,8 +41,8 @@ TMP=${TMP:-/tmp/SBo} PKG=${PKG:-$TMP/package-$PRGNAM} OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" @@ -47,7 +60,7 @@ set -e rm -rf $PKG $TMP/$PRGNAM-$VERSION mkdir -p $TMP $PKG $OUTPUT cd $TMP -tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . find -L . \ diff --git a/libraries/ode/ode.info b/libraries/ode/ode.info index f3fd777575..1720a99fe4 100644 --- a/libraries/ode/ode.info +++ b/libraries/ode/ode.info @@ -1,8 +1,8 @@ PRGNAM="ode" -VERSION="0.13" -HOMEPAGE="http://www.ode.org/" -DOWNLOAD="http://downloads.sourceforge.net/opende/ode-0.13.tar.bz2" -MD5SUM="04b32c9645c147e18caff7a597a19f84" +VERSION="0.16" +HOMEPAGE="https://ode.org/" +DOWNLOAD="https://bitbucket.org/odedevs/ode/downloads/ode-0.16.tar.gz" +MD5SUM="5da260bdc3f7de1636ce85e72807bffb" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" |