mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
development/obcpl: Added (BCPL compiler).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
ac74b4bd41
commit
c9ab166d6f
4 changed files with 143 additions and 0 deletions
14
development/obcpl/README
Normal file
14
development/obcpl/README
Normal file
|
@ -0,0 +1,14 @@
|
|||
obcpl (BCPL compiler)
|
||||
|
||||
This is an x86 (IA-32) port of the "classic" old BCPL compiler (around
|
||||
1980) from the Tripos Research Group at Cambridge University.
|
||||
|
||||
As a real, working computer language implementation, that can be studied,
|
||||
modified, and played with, this old BCPL compiler has a good deal to
|
||||
recommend it. The compiler frontend consists of only about 2000 lines
|
||||
of BCPL code, and (as supplied here) compiles to a static (fully-linked)
|
||||
x86 binary that is less than 36000 bytes in size.
|
||||
|
||||
x86_64 note: obcpl doesn't require multilib on Slackware64. It only
|
||||
generates 32-bit x86 code, but the binaries it creates are 100% statically
|
||||
linked, and will run fine on Slackware64 without multlib.
|
100
development/obcpl/obcpl.SlackBuild
Normal file
100
development/obcpl/obcpl.SlackBuild
Normal file
|
@ -0,0 +1,100 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for obcpl
|
||||
|
||||
# Written by B. Watson (yalhcru@gmail.com)
|
||||
|
||||
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
|
||||
|
||||
PRGNAM=obcpl
|
||||
VERSION=${VERSION:-0.9.8}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
else
|
||||
SLKCFLAGS="-O2"
|
||||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.xz
|
||||
cd $PRGNAM-$VERSION
|
||||
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 {} \;
|
||||
|
||||
cd src
|
||||
ln -s sys_linux.s sys.s
|
||||
|
||||
sed -i \
|
||||
-e 's,/usr/local,/usr,g' \
|
||||
-e "s,\<lib/$PRGNAM,lib$LIBDIRSUFFIX/$PRGNAM,g" \
|
||||
*
|
||||
|
||||
make CFLAGS="$SLKCFLAGS" PREFIX="/usr"
|
||||
|
||||
# Not quite ready to install: the PREFIX override doesn't entirely work
|
||||
# because the st binary was built from st.O (obcpl's parsed syntax tree
|
||||
# format) which has the /usr/local/lib path baked into it (not affected
|
||||
# by the sed command, above). It's distributed this way because obcpl
|
||||
# needs to be buildable on a system without an existing BCPL compiler. So
|
||||
# we need to regenerate st.O from st.b (its BCPL source), then rebuild
|
||||
# st from st.O. This works because st will look for its includes in the
|
||||
# current dir first. This is the sort of thing gcc has 'make bootstrap'
|
||||
# for...
|
||||
|
||||
rm -f st.O
|
||||
./st < st.b > st.O
|
||||
rm -f st st.s st.o
|
||||
make st
|
||||
|
||||
# Now we're good to go.
|
||||
make PREFIX="$PKG/usr" install
|
||||
|
||||
cd -
|
||||
|
||||
gzip $PKG/usr/man/man1/$PRGNAM.1
|
||||
|
||||
# Use a symlink instead of a hard link here:
|
||||
rm -f $PKG/usr/lib$LIBDIRSUFFIX/$PRGNAM/libhdr
|
||||
ln -s LIBHDR $PKG/usr/lib$LIBDIRSUFFIX/$PRGNAM/libhdr
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a doc/*.txt util $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
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}
|
10
development/obcpl/obcpl.info
Normal file
10
development/obcpl/obcpl.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="obcpl"
|
||||
VERSION="0.9.8"
|
||||
HOMEPAGE="http://www.nordier.com/software/obcpl.html"
|
||||
DOWNLOAD="http://www.nordier.com/software/distfiles/obcpl-0.9.8.tar.xz"
|
||||
MD5SUM="170223f85130c9b7f54082481a492045"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
MAINTAINER="B. Watson"
|
||||
EMAIL="yalhcru@gmail.com"
|
19
development/obcpl/slack-desc
Normal file
19
development/obcpl/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description.
|
||||
# Line up the first '|' above the ':' following the base package name, and
|
||||
# the '|' on the right side marks the last column you can put a character in.
|
||||
# You must make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
obcpl: obcpl (BCPL compiler)
|
||||
obcpl:
|
||||
obcpl: This is an x86 (IA-32) port of the "classic" old BCPL compiler
|
||||
obcpl: (around 1980) from the Tripos Research Group at Cambridge University.
|
||||
obcpl:
|
||||
obcpl:
|
||||
obcpl:
|
||||
obcpl:
|
||||
obcpl:
|
||||
obcpl:
|
||||
obcpl:
|
Loading…
Reference in a new issue