diff options
author | Erik Falor <ewfalor@gmail.com> | 2015-02-01 07:52:26 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-02-01 07:52:26 +0700 |
commit | cf94b63d9ad84782bc8f227c541e0911fdbee87d (patch) | |
tree | b9807b73ecb9e73c094959e76474205c6bbe0293 /development/chicken/chicken.SlackBuild | |
parent | 0c3317ac7d84a18d9a3c1e36a09b7fc69de3ab8f (diff) | |
download | slackbuilds-cf94b63d9ad84782bc8f227c541e0911fdbee87d.tar.gz |
development/chicken: Updated for version 4.9.0.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/chicken/chicken.SlackBuild')
-rw-r--r-- | development/chicken/chicken.SlackBuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/development/chicken/chicken.SlackBuild b/development/chicken/chicken.SlackBuild index d706176b38..f87653340e 100644 --- a/development/chicken/chicken.SlackBuild +++ b/development/chicken/chicken.SlackBuild @@ -1,8 +1,8 @@ #!/bin/sh -# Slackware build script for Chicken Scheme +# Slackware build script for CHICKEN Scheme -# Written by Erik Falor (ewfalor@gmail.com) 2014 +# Written by Erik Falor (ewfalor@gmail.com) 2015 # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=chicken -VERSION=${VERSION:-4.9.0} +VERSION=${VERSION:-4.9.0.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -69,7 +69,7 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -# Don't let chicken use $ARCH as a variable. +# Don't let CHICKEN use $ARCH as a variable. for f in defaults.make Makefile.linux rules.make do sed "s,ARCH,zARCH," -i ${f} @@ -93,7 +93,7 @@ make install \ DESTDIR=$PKG # should be a symbolic link not a copy otherwise ldconfig will cry -( cd $PKG/usr/lib${LIBDIRSUFFIX} ; rm -f *.so ; ln -s libchicken.so{.6,} ) +( cd $PKG/usr/lib${LIBDIRSUFFIX} ; rm -f *.so ; ln -s libchicken.so{.7,} ) find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | \ grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true |