mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
development/chicken: Updated for version 4.9.0.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
0c3317ac7d
commit
cf94b63d9a
3 changed files with 8 additions and 13 deletions
|
@ -3,8 +3,3 @@ which in turn can be fed to a C compiler to generate a standalone
|
|||
executable. An interpreter is also available and can be used as a
|
||||
scripting environment or for test programs before compilation.
|
||||
Scheme is a member of the Lisp family of languages.
|
||||
|
||||
This SlackBuild includes patches to fix the following vulnerabilities:
|
||||
CVE-2013-1874
|
||||
CVE-2013-2024
|
||||
CVE-2013-2075
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="chicken"
|
||||
VERSION="4.9.0"
|
||||
VERSION="4.9.0.1"
|
||||
HOMEPAGE="http://wiki.call-cc.org"
|
||||
DOWNLOAD="http://code.call-cc.org/releases/4.9.0/chicken-4.9.0.tar.gz"
|
||||
MD5SUM="be20b9735be86ab557cc8bf0887699dc"
|
||||
DOWNLOAD="http://code.call-cc.org/releases/4.9.0/chicken-4.9.0.1.tar.gz"
|
||||
MD5SUM="f45e282c64714127309ae45119b4d306"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in a new issue