mirror of
https://github.com/Ponce/slackbuilds
synced 2024-12-02 13:04:42 +01:00
development/javacc: Added (Java Compiler Compiler [tm])
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
parent
103c7251b4
commit
529d50ba91
7 changed files with 127 additions and 0 deletions
10
development/javacc/README
Normal file
10
development/javacc/README
Normal file
|
@ -0,0 +1,10 @@
|
|||
Java Compiler Compiler [tm] (JavaCC [tm]) is the most popular parser
|
||||
generator for use with Java [tm] applications. A parser generator is
|
||||
a tool that reads a grammar specification and converts it to a Java
|
||||
program that can recognize matches to the grammar. In addition to the
|
||||
parser generator itself, JavaCC provides other standard capabilities
|
||||
related to parser generation such as tree building (via a tool called
|
||||
JJTree included with JavaCC), actions, debugging, etc.
|
||||
|
||||
This is just a binary repackaging script. All you need to run the
|
||||
application, once installed, is a Java Runtime Environment (JRE).
|
3
development/javacc/javacc
Normal file
3
development/javacc/javacc
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
java -classpath /opt/javacc/javacc.jar javacc "$@"
|
||||
|
79
development/javacc/javacc.SlackBuild
Normal file
79
development/javacc/javacc.SlackBuild
Normal file
|
@ -0,0 +1,79 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for javacc
|
||||
|
||||
# Copyright (c) 2009 Alan Alberghini <414N@slacky.it>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Permission to use, copy, modify, and distribute this software for
|
||||
# any purpose with or without fee is hereby granted, provided that
|
||||
# the above copyright notice and this permission notice appear in all
|
||||
# copies.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED AS IS'' AND ANY EXPRESSED OR IMPLIED
|
||||
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
# IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
|
||||
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
|
||||
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
||||
# OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
# SUCH DAMAGE.
|
||||
# -----------------------------------------------------------------------------
|
||||
#
|
||||
# Build history:
|
||||
#
|
||||
# 1 - Initial release.
|
||||
|
||||
PRGNAM=javacc
|
||||
VERSION=${VERSION:-5.0}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
ARCH=noarch
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
DOCS="LICENSE doc/* examples"
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf "$CWD/javacc-5.0.tar.gz"
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
# Create destination directories
|
||||
mkdir -p "$PKG/opt/$PRGNAM/" "$PKG/usr/bin" "$PKG/usr/doc/$PRGNAM-$VERSION"
|
||||
|
||||
# Copy the main program
|
||||
cp bin/lib/javacc.jar "$PKG/opt/$PRGNAM"
|
||||
|
||||
# Copy the wrapper scripts to /usr/bin
|
||||
install -m0755 -t "$PKG/usr/bin" "$CWD/javacc" "$CWD/jjtree" "$CWD/jjdoc" bin/jjrun
|
||||
|
||||
# Copy program documentation into the package
|
||||
cp -a \
|
||||
$DOCS \
|
||||
$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/javacc/javacc.info
Normal file
10
development/javacc/javacc.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="javacc"
|
||||
VERSION="5.0"
|
||||
HOMEPAGE="https://javacc.dev.java.net"
|
||||
DOWNLOAD="https://javacc.dev.java.net/files/documents/17/138911/javacc-5.0.tar.gz"
|
||||
MD5SUM="ec3738abfa889c94a82f56453633d6bc"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Alan Alberghini"
|
||||
EMAIL="414N@slacky.it"
|
||||
APPROVED="dsomero"
|
3
development/javacc/jjdoc
Normal file
3
development/javacc/jjdoc
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
java -classpath /opt/javacc/javacc.jar jjdoc "$@"
|
||||
|
3
development/javacc/jjtree
Normal file
3
development/javacc/jjtree
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
java -classpath /opt/javacc/javacc.jar jjtree "$@"
|
||||
|
19
development/javacc/slack-desc
Normal file
19
development/javacc/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------------------------------------------------------|
|
||||
javacc: JavaCC (Java Compiler Compiler [tm])
|
||||
javacc:
|
||||
javacc: JavaCC [tm] is the most popular parser generator for use with Java[tm]
|
||||
javacc: applications. A parser generator is a tool thar reads a grammar
|
||||
javacc: specification and converts it to a Java program that can recognize
|
||||
javacc: matches to the grammar.
|
||||
javacc:
|
||||
javacc: Homepage: https://javacc.dev.java.net
|
||||
javacc:
|
||||
javacc:
|
||||
javacc:
|
Loading…
Reference in a new issue