mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
community/apache-ant: remove "return 1" from abuild
This commit is contained in:
parent
1efc5728f3
commit
a387983bfe
@ -4,13 +4,12 @@
|
||||
pkgname=apache-ant
|
||||
pkgver=1.10.3
|
||||
pkgrel=0
|
||||
pkgdesc="A java-based build tool."
|
||||
pkgdesc="A java-based build tool"
|
||||
url="http://ant.apache.org/"
|
||||
arch="noarch"
|
||||
options="!check" # Needs itself for testing.
|
||||
license="Apache-2.0"
|
||||
depends="openjdk8-jre-base"
|
||||
makedepends=""
|
||||
source="http://archive.apache.org/dist/ant/binaries/$pkgname-$pkgver-bin.tar.bz2"
|
||||
builddir="$srcdir/$pkgname-$pkgver"
|
||||
|
||||
@ -32,25 +31,25 @@ package() {
|
||||
|
||||
install -dm755 "$destdir"/bin
|
||||
rm bin/*.bat bin/*.cmd
|
||||
install -m755 bin/* "$destdir"/bin || return 1
|
||||
install -m755 bin/* "$destdir"/bin
|
||||
|
||||
install -dm755 "$pkgdir"/usr/bin
|
||||
ln -sf $_anthome/bin/ant "$pkgdir"/usr/bin/ant || return 1
|
||||
ln -sf $_anthome/bin/ant "$pkgdir"/usr/bin/ant
|
||||
|
||||
cp -r etc "$destdir"/ || return 1
|
||||
cp -r etc "$destdir"/
|
||||
|
||||
install -dm755 "$destdir"/lib
|
||||
install -m644 lib/*.jar "$destdir"/lib || return 1
|
||||
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 || return 1
|
||||
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 || return 1
|
||||
install -m644 -D $file "$pkgdir"/usr/share/licenses/$pkgname/$file
|
||||
done
|
||||
|
||||
install -m644 -D $pkgname.sh "$pkgdir"/etc/profile.d/$pkgname.sh
|
||||
|
Loading…
Reference in New Issue
Block a user