Files
termux-packages/packages/libcommons-lang3-java/build.sh
termux-pacman-bot 518653b9d5 revbump(main/libcommons-lang3-java): 3.18.0-1
- Unfortunately, during the development of https://github.com/termux/termux-packages/pull/25127, `libcommons-lang3-java` was auto-updated to the same version as in my branch, and when I rebased and merged my branch, the automerge automerged the two bumps into the same version, but this has unfortunately prevented the change of dependency of `libcommons-lang3-java` from `openjdk-17` to `openjdk-21` from deploying into the mirror.
2025-07-20 00:09:37 +00:00

26 lines
952 B
Bash

TERMUX_PKG_HOMEPAGE=https://commons.apache.org/proper/commons-lang/
TERMUX_PKG_DESCRIPTION="A host of helper utilities for the java.lang API"
TERMUX_PKG_LICENSE="Apache-2.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="3.18.0"
TERMUX_PKG_REVISION=1
TERMUX_PKG_SRCURL=https://dlcdn.apache.org/commons/lang/source/commons-lang3-${TERMUX_PKG_VERSION}-src.tar.gz
TERMUX_PKG_SHA256=4a94ddeb6a5819c5d0aa5678d16cf97a672b06398b93a0e4f90594032ca991f7
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_DEPENDS="openjdk-21"
TERMUX_PKG_PLATFORM_INDEPENDENT=true
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_make() {
cd src/main/java
javac -encoding UTF-8 -source 1.8 -target 1.8 $(find . -name "*.java")
_BUILD_JARFILE="$TERMUX_PKG_BUILDDIR/commons-lang3.jar"
rm -f "$_BUILD_JARFILE"
jar cf "$_BUILD_JARFILE" $(find . -name "*.class")
}
termux_step_make_install() {
mkdir -p $TERMUX_PREFIX/share/java
install -Dm600 "$_BUILD_JARFILE" $TERMUX_PREFIX/share/java/
}