summaryrefslogtreecommitdiff
path: root/user/ant/APKBUILD
blob: 022b4c8efaa12a8d42c0fba5cd928c3cd83d0308 (plain) (blame)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Contributor: Steeve Chailloux <steeve@chaahk.com>
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Contributor: Alyx Wolcott <alyx@leuhta.com>
# Maintainer: Alyx Wolcott <alyx@leuhta.com>
pkgname=ant
pkgver=1.10.8
pkgrel=0
pkgdesc="Java-based build tool"
url="http://ant.apache.org/"
arch="noarch !armv7"  #1007
options="!check"  # ExecStreamRedirectorTest locks on ppc64, SMTP tests fail
license="Apache-2.0"
depends="openjdk8"
makedepends=""
subpackages=""
source="https://archive.apache.org/dist/ant/source/apache-$pkgname-$pkgver-src.tar.gz
	ant.sh
	imageio_fix_java_test.patch
	imageio_fix_test.patch
	"
builddir="$srcdir/apache-$pkgname-$pkgver"

_anthome="/usr/lib/java/$pkgname"

# secfixes:
#   1.10.8-r0:
#     - CVE-2020-1945

build() {
	sh ./bootstrap.sh
	./bootstrap/bin/ant dist-lite
}

check() {
	./bootstrap/bin/ant test
}

package() {
	local destdir="$pkgdir/$_anthome"

	install -dm755 "$destdir"/bin
	rm dist/bin/*.bat dist/bin/*.cmd
	install -m755 dist/bin/* "$destdir"/bin

	install -dm755 "$pkgdir"/usr/bin
	ln -sf $_anthome/bin/ant "$pkgdir"/usr/bin/ant

	install -dm755 "$destdir"/lib
	install -m644 dist/lib/*.jar "$destdir"/lib

	# symlink to junit so it's on the javac build path for ant
	# matches behavior on ubuntu 9 and makes sense for compatibility
	ln -sf ../../junit.jar "$destdir"/lib/junit.jar

	# The license says the NOTICE file should be redistributed for
	# derivative works, so lets supply it.
	install -m644 -D NOTICE "$pkgdir"/usr/share/licenses/$pkgname/NOTICE

	install -m644 -D $srcdir/$pkgname.sh "$pkgdir"/etc/profile.d/$pkgname.sh
}

sha512sums="08312b38db21f0e9b32cbe45aebe42ff8abbc1feab0f7343c9c60ea751fb9ad3a92ecd36cdf89bc1cc77a381c945da6194fc611b26e385a915d8e2404cc168c6  apache-ant-1.10.8-src.tar.gz
955fe52b415d57716df1338eff6d667d80e06a67bffd53def7d63d96f1224157b724a92df647afe8b3243dea749e221aec1e86d5be01060408fa000ec1132374  ant.sh
9a698041a06ccc6db7765133fc6fabc6f2d0e70b96ff9de594bd836fc05ac33f489968a4fdd12fe044458eb3b99e905ca1e2a62a55acdbacebff9782c82a27de  imageio_fix_java_test.patch
1457c7415df1e80c8763b4db9f41cbdebfa58e17bcd263dae9ce31f9ee601650b51a893e4e0a324c974b60a6c2076fddfd78180baca0bcdbff65e9e88b30e063  imageio_fix_test.patch"