summaryrefslogtreecommitdiffstats
path: root/libraries/jai/jai.SlackBuild
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo <willysr@slackbuilds.org>2017-04-15 22:27:44 +0700
committer Robby Workman <rworkman@slackbuilds.org>2021-04-21 19:49:34 -0500
commitdae21c2ebb425453556be8e1bcb7e174f52cc657 (patch)
tree62ea94a83be9dc7a8effedcb9208e34a2b68f364 /libraries/jai/jai.SlackBuild
parent2f1ccdd68a48d2dac3abe4d3f193961759d98de0 (diff)
downloadslackbuilds-dae21c2ebb425453556be8e1bcb7e174f52cc657.tar.gz
slackbuilds-dae21c2ebb425453556be8e1bcb7e174f52cc657.tar.xz
libraries/jai: Removed (No maintainer).
Diffstat (limited to 'libraries/jai/jai.SlackBuild')
-rw-r--r--libraries/jai/jai.SlackBuild85
1 files changed, 0 insertions, 85 deletions
diff --git a/libraries/jai/jai.SlackBuild b/libraries/jai/jai.SlackBuild
deleted file mode 100644
index d148883624..0000000000
--- a/libraries/jai/jai.SlackBuild
+++ /dev/null
@@ -1,85 +0,0 @@
-#!/bin/sh
-
-# SlackBuild script for jai
-
-# Copyright 2014 Benjamin Trigona-Harany <slackbuilds@jaxartes.net>
-# All rights reserved.
-#
-# Redistribution and use of this script, with or without modification, is
-# permitted provided that the following conditions are met:
-#
-# 1. Redistributions of this script must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS 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 AUTHOR 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.
-
-PRGNAM=jai
-VERSION=${VERSION:-1.1.3}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i486 ;;
- arm*) ARCH=arm ;;
- *) ARCH=x86_64 ;;
- esac
-fi
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-SRCVER=`echo $VERSION | tr . _`
-if [ "$ARCH" = "x86_64" ]; then
- PKGARCH=$ARCH
- SRCARCH=amd64
-elif [ "$ARCH" = "arm" ]; then
- printf "\narm is unsupported ...\n\n"
- exit 1
-else
- PKGARCH=$ARCH
- SRCARCH=i586
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$SRCVER
-tar xvf $CWD/$PRGNAM-$SRCVER-lib-linux-$SRCARCH.tar.gz
-cd $PRGNAM-$SRCVER
-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 -p $PKG/$JAVA_HOME/jre/lib/$SRCARCH
-cp -a lib/*.so $PKG/$JAVA_HOME/jre/lib/$SRCARCH
-
-mkdir -p $PKG/$JAVA_HOME/jre/lib/ext
-cp -a lib/*.jar $PKG/$JAVA_HOME/jre/lib/ext
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a COPYRIGHT-jai.txt DISTRIBUTIONREADME-jai.txt LICENSE-jai.txt THIRDPARTYLICENSEREADME-jai.txt \
- $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-mkdir $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$PKGARCH-$BUILD$TAG.${PKGTYPE:-tgz}