diff options
author | David Spencer <baildon.research@googlemail.com> | 2015-11-18 22:50:30 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-01-17 09:40:16 +0700 |
commit | 614576c9a227dbda3c8405672db28fe0fe00beac (patch) | |
tree | c58500a9115eedccd8f99f623fdb1c389322f9be /libraries/openbabel/openbabel.SlackBuild | |
parent | db8b2ec2a17d88391bad13abcbeebc9f694e8d04 (diff) |
libraries/openbabel: Updated for version 2.3.2.
Patched to build with gcc-5.2.0.
Signed-off-by: David Spencer <baildon.research@googlemail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/openbabel/openbabel.SlackBuild')
-rw-r--r-- | libraries/openbabel/openbabel.SlackBuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libraries/openbabel/openbabel.SlackBuild b/libraries/openbabel/openbabel.SlackBuild index 66325ec6fa68..7bd54ad59510 100644 --- a/libraries/openbabel/openbabel.SlackBuild +++ b/libraries/openbabel/openbabel.SlackBuild @@ -25,7 +25,7 @@ # Thanks to Daniil Bratashov (dn2010@gmail.com) for the cmake conversion PRGNAM=openbabel -VERSION=2.3.1 +VERSION=${VERSION:-2.3.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -69,7 +69,10 @@ find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ -o -perm 511 \) -exec chmod 755 {} \; -o \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +# Patch for gcc-5 thanks to Arch +patch -p0 < $CWD/gcc-5.patch mkdir -p build cd build |