wok-next view apache-ant/receipt @ rev 21338

OpenSSL 1.0.2t -> 1.0.2u: overflow bug CVE-2019-1551
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Dec 21 08:55:46 2019 +0000 (2019-12-21)
parents d5aab818505e
children afe47b296882
line source
1 # SliTaz package receipt v2.
3 PACKAGE="apache-ant"
4 VERSION="1.9.4"
5 CATEGORY="development"
6 SHORT_DESC="A Java-based build tool"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="Apache"
9 WEB_SITE="http://ant.apache.org/"
10 HOST_ARCH="any"
12 TARBALL="$PACKAGE-$VERSION-bin.tar.bz2"
13 WGET_URL="http://www.apache.org/dist/ant/binaries/$TARBALL"
15 compile_rules() {
16 # The only binaries that would built are Java binaries (not native binaries)
17 # Thus, to help with bootstrapping, use the binary ant release
18 mkdir -p $install/usr/bin
19 cp bin/*.pl bin/*.py bin/ant bin/antRun $install/usr/bin
21 cp -a $src/etc $install
23 mkdir -p $install/usr/lib
24 cp lib/*.jar lib/*.pom $install/usr/lib
25 }
27 genpkg_rules() {
28 mkdir -p $fs
29 cp -a $install/usr $fs
30 cp -a $install/etc $fs
31 DEPENDS="jdk"
32 #DEPENDS="java-jdk"
33 }