mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-05 06:33:50 +02:00
New package: beanshell-2.1.1
This commit is contained in:
parent
4be7f1ac10
commit
569fd3d86a
1 changed files with 43 additions and 0 deletions
43
srcpkgs/beanshell/template
Normal file
43
srcpkgs/beanshell/template
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
# Template file for 'beanshell'
|
||||||
|
pkgname=beanshell
|
||||||
|
version=2.1.1
|
||||||
|
revision=1
|
||||||
|
hostmakedepends="openjdk8 apache-ant"
|
||||||
|
depends="virtual?java-runtime"
|
||||||
|
short_desc="BeanShell - Simple Java Scripting"
|
||||||
|
maintainer="Đoàn Trần Công Danh <congdanhqx@gmail.com>"
|
||||||
|
license="Apache-2.0"
|
||||||
|
homepage="https://beanshell.github.io/"
|
||||||
|
distfiles="https://github.com/beanshell/beanshell/releases/download/${version}/bsh-${version}-src.zip"
|
||||||
|
checksum=2248387ceaa319840434a3547a8b2fec12f95a8418ee039ce5ff5726053a139c
|
||||||
|
|
||||||
|
do_build() {
|
||||||
|
source /etc/profile.d/jdk.sh
|
||||||
|
source /etc/profile.d/apache-ant.sh
|
||||||
|
ant jarall
|
||||||
|
# Source: Debian
|
||||||
|
cat >bsh.sh <<-'EOF'
|
||||||
|
#!/bin/sh
|
||||||
|
if [ "$1" = "-classpath" ]; then
|
||||||
|
CLASSPATH="$2"
|
||||||
|
shift 2
|
||||||
|
fi
|
||||||
|
: "${CLASSPATH:=.}"
|
||||||
|
_jl=
|
||||||
|
if [ -f /usr/share/java/jline.jar ]; then
|
||||||
|
CLASSPATH="${CLASSPATH}:/usr/share/java/jline.jar"
|
||||||
|
_jl=jline.ConsoleRunner
|
||||||
|
fi
|
||||||
|
CLASSPATH="${CLASSPATH}:/usr/share/java/bsh.jar"
|
||||||
|
export CLASSPATH
|
||||||
|
|
||||||
|
exec /usr/bin/java ${_jl:+jline.ConsoleRunner} bsh.Interpreter "$@"
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
|
do_install() {
|
||||||
|
vinstall dist/bsh-${version}.jar 644 \
|
||||||
|
usr/share/java
|
||||||
|
ln -s bsh-${version}.jar ${DESTDIR}/usr/share/java/bsh.jar
|
||||||
|
vbin bsh.sh bsh
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue