mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-01-28 21:52:39 +00:00
- 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.
26 lines
952 B
Bash
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/
|
|
}
|