development/LLgen: Initial import

This commit is contained in:
fdeak 2010-05-11 14:05:50 +02:00 committed by Michiel van Wessem
parent d171842e7b
commit 186450ac4d
4 changed files with 88 additions and 0 deletions

View File

@ -0,0 +1,64 @@
#!/bin/sh
# Slackware build script for LLgen
# Written by fdeak <ferenc.deak@gmail.com>
# Modified by the SlackBuilds.org project
set -e
PRGNAM=LLgen
VERSION=1.4
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
fi
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM
tar xzf $CWD/$PRGNAM.tar.gz
cd $PRGNAM
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
CC="gcc $CFLAGS" \
make LIBDIR=/usr/lib/LLgen
mkdir -p $PKG/usr/{bin,lib}
mkdir -p $PKG/usr/man/man1
make LIBDIR=$PKG/usr/lib/LLgen \
INSTALLDIR=$PKG/usr/bin \
MANDIR=$PKG/usr/man/man1\
firstinstall
( cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
)
( cd $PKG/usr/man
find . -type f -exec gzip -9 {} \;
for i in $(find . -type l) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
)
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a COPYING doc/* $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.tgz

View File

@ -0,0 +1,8 @@
PRGNAM="LLgen"
VERSION="1.4"
HOMEPAGE="http://www.cs.vu.nl/~ceriel/LLgen.html"
DOWNLOAD="ftp://ftp.cs.vu.nl/pub/ceriel/LLgen.tar.gz"
MD5SUM="b8408e4a56378085cd721f3f6778e27c"
MAINTAINER="fdeak"
EMAIL="ferenc.deak@gmail.com"
APPROVED="BP{k}"

5
development/LLgen/README Normal file
View File

@ -0,0 +1,5 @@
LLgen is a tool for generating an efficient recursive descent parser
from an ELL(1) grammar. The grammar may be ambiguous or more general
than ELL(1): there are both static and dynamic facilities to resolve
the ambiguities

View File

@ -0,0 +1,11 @@
LLgen: LLgen (an ELL(1) parser generator)
LLgen:
LLgen: LLgen is a tool for generating an efficient recursive descent parser
LLgen: from an ELL(1) grammar. The grammar may be ambiguous or more general
LLgen: than ELL(1): there are both static and dynamic facilities to resolve
LLgen: the ambiguities
LLgen:
LLgen:
LLgen:
LLgen:
LLgen: