mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 04:16:46 +02:00
testing/gradle: new aport
Gradle is a build tool with a focus on build automation and support for multi-language development
This commit is contained in:
parent
9a878f3587
commit
ae7c80e2f4
40
testing/gradle/APKBUILD
Normal file
40
testing/gradle/APKBUILD
Normal file
@ -0,0 +1,40 @@
|
||||
# Contributor: Roberto Oliveira <robertoguimaraes8@gmail.com>
|
||||
# Maintainer: Roberto Oliveira <robertoguimaraes8@gmail.com>
|
||||
pkgname=gradle
|
||||
pkgver=4.8.1
|
||||
pkgrel=0
|
||||
pkgdesc="Build tool with a focus on build automation and support for multi-language development"
|
||||
url="https://gradle.org/"
|
||||
arch="noarch"
|
||||
options="!check"
|
||||
license="Apache-2.0"
|
||||
depends="openjdk8"
|
||||
source="https://services.gradle.org/distributions/$pkgname-$pkgver-bin.zip"
|
||||
builddir="$srcdir/$pkgname-$pkgver"
|
||||
|
||||
package() {
|
||||
local gradlehome="/usr/share/java/$pkgname"
|
||||
local destdir="$pkgdir/$gradlehome"
|
||||
|
||||
cd "$builddir"
|
||||
|
||||
install -dm755 "$destdir"/bin
|
||||
rm bin/*.bat
|
||||
install -m755 bin/* "$destdir"/bin
|
||||
|
||||
install -dm755 "$pkgdir"/usr/bin
|
||||
ln -sf $gradlehome/bin/gradle "$pkgdir"/usr/bin/gradle
|
||||
|
||||
install -dm755 "$destdir"/lib
|
||||
install -m644 lib/*.jar "$destdir"/lib
|
||||
|
||||
install -dm755 "$destdir"/lib/plugins
|
||||
install -m644 lib/plugins/*.jar "$destdir"/lib/plugins
|
||||
|
||||
# NOTICE file should be redistributed for derivative works
|
||||
local file; for file in LICENSE NOTICE; do
|
||||
install -m644 -D $file "$pkgdir"/usr/share/licenses/$pkgname/$file
|
||||
done
|
||||
}
|
||||
|
||||
sha512sums="63e77c44f3ff57a7617e128369bab084cfbbf95b12a06c8ee80ac61a419b6ae43ef240049629052856cc3c650bbf79959c200c336c3eba87f920aa4df9fca1dc gradle-4.8.1-bin.zip"
|
||||
Loading…
x
Reference in New Issue
Block a user