mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
libraries/javacomm: Added to 12.2 repository
This commit is contained in:
parent
432a13b44d
commit
4ded9f1228
4 changed files with 83 additions and 0 deletions
7
libraries/javacomm/README
Normal file
7
libraries/javacomm/README
Normal file
|
@ -0,0 +1,7 @@
|
|||
The Java Communications API (also known as javax.comm) is a Java extension
|
||||
that provides access to RS-232 hardware (serial ports) and limited access
|
||||
to IEEE-1284 hardware (parallel ports).
|
||||
|
||||
Note: this is an obsolete version of the Solaris implementation of Javacomm.
|
||||
It is intended for use only with JMRI (available at Slackbuilds.org).
|
||||
It is not necessarily suitable for use with other applications.
|
56
libraries/javacomm/javacomm.SlackBuild
Normal file
56
libraries/javacomm/javacomm.SlackBuild
Normal file
|
@ -0,0 +1,56 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for javacomm
|
||||
# Written by David Spencer <nobbutl@yahoo.co.uk>
|
||||
# This script is dedicated to the public domain
|
||||
|
||||
PRGNAM=javacomm
|
||||
VERSION=2.0
|
||||
SRCVER=20-x86
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "x86_64" ]; then
|
||||
LIBDIRSUFFIX="64"
|
||||
else
|
||||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
JAVA_HOME=${JAVA_HOME:-/usr/lib${LIBDIRSUFFIX}/java}
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf commapi
|
||||
tar xvf $CWD/$PRGNAM$SRCVER.tar.Z
|
||||
cd commapi
|
||||
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 {} \;
|
||||
|
||||
mkdir -p $PKG/$JAVA_HOME/lib/ext
|
||||
cp -a comm.jar $PKG/$JAVA_HOME/lib/ext
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
COMM2.0_license.txt CommAPI_FAQ.txt PlatformSpecific.html Readme.html apichanges.html \
|
||||
javadocs/ samples/ \
|
||||
$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
|
8
libraries/javacomm/javacomm.info
Normal file
8
libraries/javacomm/javacomm.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="javacomm"
|
||||
VERSION="2.0"
|
||||
HOMEPAGE="http://java.sun.com/products/javacomm/"
|
||||
DOWNLOAD="http://www.oreilly.com.tw/bookcode/java_io/javacomm20-x86.tar.Z"
|
||||
MD5SUM="9eac897bf5233b7cf495eaae5d596804"
|
||||
MAINTAINER="David Spencer"
|
||||
EMAIL="nobbutl@yahoo.co.uk"
|
||||
APPROVED="dsomero"
|
12
libraries/javacomm/slack-desc
Normal file
12
libraries/javacomm/slack-desc
Normal file
|
@ -0,0 +1,12 @@
|
|||
|-----handy-ruler------------------------------------------------------|
|
||||
javacomm: javacomm (Java Communications API Extension v2.0)
|
||||
javacomm:
|
||||
javacomm: This Java extension provides access to RS-232 hardware (serial ports)
|
||||
javacomm: and limited access to IEEE-1284 hardware (parallel ports).
|
||||
javacomm:
|
||||
javacomm: Homepage: http://java.sun.com/products/javacomm/
|
||||
javacomm:
|
||||
javacomm:
|
||||
javacomm:
|
||||
javacomm:
|
||||
javacomm:
|
Loading…
Reference in a new issue