summaryrefslogtreecommitdiffstats
path: root/libraries/openbabel/openbabel.SlackBuild
diff options
context:
space:
mode:
author B. Watson <yalhcru@gmail.com>2022-02-15 15:25:56 -0500
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2022-02-16 08:20:08 +0700
commit9db8b4926857aad2c1be7e689d1477f8a352c0ac (patch)
tree93327b7fbf83005d1b96e3deb73d8f6df640c1d8 /libraries/openbabel/openbabel.SlackBuild
parentdb614d4beec7ee8c0bb19e493366d63565ea7303 (diff)
downloadslackbuilds-9db8b4926857aad2c1be7e689d1477f8a352c0ac.tar.gz
slackbuilds-9db8b4926857aad2c1be7e689d1477f8a352c0ac.tar.xz
libraries/openbabel: Fix download URL, remove jdk dep.
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/openbabel/openbabel.SlackBuild')
-rw-r--r--libraries/openbabel/openbabel.SlackBuild14
1 files changed, 8 insertions, 6 deletions
diff --git a/libraries/openbabel/openbabel.SlackBuild b/libraries/openbabel/openbabel.SlackBuild
index db323e65fc..68c4688d0e 100644
--- a/libraries/openbabel/openbabel.SlackBuild
+++ b/libraries/openbabel/openbabel.SlackBuild
@@ -24,6 +24,11 @@
# Thanks to Daniil Bratashov (dn2010@gmail.com) for the cmake conversion
+# 20220215 bkw:
+# - fix download URL (github stupidity again).
+# - remove jdk from REQUIRES: it wasn't being used.
+# - add README note about wx(Python|GTK3) optional dep.
+
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=openbabel
@@ -41,9 +46,6 @@ if [ -z "$ARCH" ]; then
esac
fi
-# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
-# the name of the created package would be, and then exit. This information
-# could be useful to other scripts.
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
exit 0
@@ -73,14 +75,14 @@ rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$PRGNAM-$SRCVER
-tar xvf $CWD/$PRGNAM-$SRCVER.tar.gz
+tar xvf $CWD/$PRGNAM-$PRGNAM-$SRCVER.tar.gz
cd $PRGNAM-$PRGNAM-$SRCVER
chown -R root:root .
find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
- -o -perm 511 \) -exec chmod 755 {} \; -o \
+ -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 {} \+
mkdir -p build
cd build