aboutsummaryrefslogtreecommitdiffstats
path: root/community/gradle/APKBUILD
blob: d9b244e4fb88a9dd89352fad688dfd76cf016e9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Contributor: Roberto Oliveira <robertoguimaraes8@gmail.com>
# Maintainer: Roberto Oliveira <robertoguimaraes8@gmail.com>
pkgname=gradle
pkgver=4.9
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="e1e6ec7ed46cd4e9c833956dd864d6a26a63f417137945d9235e31344c5436ea70aa000977c8d7a6acaad914c1dfce5241d21a0f32d52973c40337663e815098  gradle-4.9-bin.zip"