blob: e9f3e7d2c93a34c4d50c21b8bf0bbd14cc5b7140 (
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
|
# Contributor: Steeve Chailloux <steeve@chaahk.com>
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=apache-ant
pkgver=1.10.9
pkgrel=0
pkgdesc="A java-based build tool"
url="https://ant.apache.org/"
arch="noarch !mips !mips64"
options="!check" # Needs itself for testing.
license="Apache-2.0"
depends="openjdk8-jre-base"
source="https://downloads.apache.org/ant/binaries/apache-ant-$pkgver-bin.tar.xz"
_anthome="/usr/share/java/$pkgname"
# secfixes:
# 1.10.9-r0:
# - CVE-2020-11979
# 1.10.8-r0:
# - CVE-2020-1945
build() {
cat > $pkgname.sh <<-EOF
ANT_HOME="$_anthome"
export ANT_HOME
EOF
}
package() {
local destdir="$pkgdir/$_anthome"
install -dm755 "$destdir"/bin
rm bin/*.bat bin/*.cmd
install -m755 bin/* "$destdir"/bin
install -dm755 "$pkgdir"/usr/bin
ln -sf $_anthome/bin/ant "$pkgdir"/usr/bin/ant
cp -r etc "$destdir"/
install -dm755 "$destdir"/lib
install -m644 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
# http://bugs.archlinux.org/task/15229
ln -sf ../../junit.jar "$destdir"/lib/junit.jar
# The license says the NOTICE file should be redistributed for
# derivative works, so lets supply it.
local file; for file in LICENSE NOTICE; do
install -m644 -D $file "$pkgdir"/usr/share/licenses/$pkgname/$file
done
install -m644 -D $pkgname.sh "$pkgdir"/etc/profile.d/$pkgname.sh
}
sha512sums="ecb09c83b24f98b9475849548558809ff21c88f8d39fbc3559f24df5fc640a50bbd885681d9c676285d8843bd3dc09a6238189c13a4238ba5c01385a5bd29542 apache-ant-1.10.9-bin.tar.xz"
|