0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-03-04 09:28:54 +00:00
Termux Github Actions faccdae2d6 bump(main/gradle): 8.13
This commit has been automatically submitted by Github Actions.
2025-02-25 18:19:09 +00:00

25 lines
799 B
Bash

TERMUX_PKG_HOMEPAGE=https://gradle.org/
TERMUX_PKG_DESCRIPTION="Powerful build system for the JVM"
TERMUX_PKG_LICENSE="Apache-2.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="1:8.13"
TERMUX_PKG_SRCURL=https://services.gradle.org/distributions/gradle-${TERMUX_PKG_VERSION:2}-bin.zip
TERMUX_PKG_SHA256=20f1b1176237254a6fc204d8434196fa11a4cfb387567519c61556e8710aed78
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_DEPENDS="openjdk-17"
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_PLATFORM_INDEPENDENT=true
termux_step_make_install() {
rm -f ./bin/*.bat
rm -rf $TERMUX_PREFIX/opt/gradle
mkdir -p $TERMUX_PREFIX/opt/gradle
cp -r ./* $TERMUX_PREFIX/opt/gradle/
for i in $TERMUX_PREFIX/opt/gradle/bin/*; do
if [ ! -f "$i" ]; then
continue
fi
ln -sfr $i $TERMUX_PREFIX/bin/$(basename $i)
done
}