blob: 8cc73eee690f14b947cb534383b62c0eba8ab18e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
#!/bin/sh
### sbcl.SlackBuild ###
# Slackware build script for sbcl (Steel Bank Common Lisp)
# written by paul wisehart paul@oldcode.org
PRGNAM=sbcl
VERSION=${VERSION:-1.0.50}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
#ARCH should
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
*) ARCH=$( uname -m ) ;;
esac
fi
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
LIBDIRSUFFIX=""
FNAM=$PRGNAM-$VERSION-x86-linux-binary
elif [ "$ARCH" = "x86_64" ]; then
LIBDIRSUFFIX="64"
FNAM=$PRGNAM-$VERSION-x86-64-linux-binary
else
echo "Architecture [$ARCH] not supported."
exit 1
fi
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $(basename $FNAM "-binary") #the resulting directory doesnt have the "-binary"
tar xvf $CWD/$FNAM.tar.bz2
cd $(basename $FNAM "-binary")
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 \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
mkdir ${PKG}/usr
INSTALL_ROOT=${PKG}/usr sh install.sh
#fixup /usr/lib -> /usr/lib64 if on x86_64:
if [ "$ARCH" = "x86_64" ]; then
cd $PKG/usr
mv lib lib${LIBDIRSUFFIX}
cd -
fi
cd $PKG/usr/share
mv man ..
mv doc ..
cd -
cd $PKG/usr/doc
mv $PRGNAM $PRGNAM-$VERSION
rm -rf $PKG/usr/share
cd -
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
#get rid of unneeded zero-length files.
cd $PKG
find . -name "test-passed" -type f -exec rm -f {} \;
cd -
# scripts in profile.d that set SBCL_HOME
mkdir -p $PKG/etc/profile.d
cp $CWD/sbcl.csh $CWD/sbcl.sh $PKG/etc/profile.d
chmod 0755 $PKG/etc/profile.d/*
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|