diff options
author | B. Watson <yalhcru@gmail.com> | 2017-03-20 15:32:20 -0400 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2017-03-25 13:27:19 +0000 |
commit | 50710a784c4f5ada1f39fc4716c3cbbf8783b59d (patch) | |
tree | f00774d5f568112a9c91ae0efcdcb9ff6b38db92 /development | |
parent | 393340878cdeb30aff52c6b4f995f38ca7575010 (diff) | |
download | slackbuilds-50710a784c4f5ada1f39fc4716c3cbbf8783b59d.tar.gz |
development/apache-ivy: Fix and install doinst.sh.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r-- | development/apache-ivy/apache-ivy.SlackBuild | 3 | ||||
-rw-r--r-- | development/apache-ivy/doinst.sh | 17 |
2 files changed, 7 insertions, 13 deletions
diff --git a/development/apache-ivy/apache-ivy.SlackBuild b/development/apache-ivy/apache-ivy.SlackBuild index 522b865d1d..18cd85ba71 100644 --- a/development/apache-ivy/apache-ivy.SlackBuild +++ b/development/apache-ivy/apache-ivy.SlackBuild @@ -15,7 +15,7 @@ ANT_HOME=/usr/share/ant if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -54,6 +54,7 @@ cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/development/apache-ivy/doinst.sh b/development/apache-ivy/doinst.sh index 1f6d45574c..8e2d078264 100644 --- a/development/apache-ivy/doinst.sh +++ b/development/apache-ivy/doinst.sh @@ -1,12 +1,5 @@ -postinstall scriptlet (using /bin/sh): -rm -f /usr/share/java/ivy.jar -ln -s /usr/share/java/ivy-1.4.1.jar /usr/share/java/ivy.jar -postuninstall scriptlet (using /bin/sh): -if [ "$1" = "0" ]; then - # Remove the old link - rm -f /usr/share/java/ivy.jar - - # Put back a new link. It's OK if this fails, that just means there - # is no other version of the package installed - ln -fs `ls -tr /usr/share/java/ivy-* 2>/dev/null|tail -n 1` /usr/share/java/ivy.jar || true -fi +# 20170320 bkw: got rid of dead code (if [ "$1" = "0" ]... would never be +# true in a doinst), got rid of absolute paths, and there were comments +# missing their # so they were executed as code... +rm -f usr/share/java/ivy.jar +ln -s ivy-1.4.1.jar usr/share/java/ivy.jar |