mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
19 lines
617 B
Bash
19 lines
617 B
Bash
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
|
|
# Contributor: Simon Lipp <sloonz+aur@gmail.com>
|
|
|
|
pkgname=java-commons-io
|
|
pkgver=1.4
|
|
pkgrel=3
|
|
pkgdesc="IO related classes for Java"
|
|
arch=('i686' 'x86_64')
|
|
url="http://commons.apache.org/io/"
|
|
license=(APACHE)
|
|
depends=('java-runtime')
|
|
source=('http://apache.crihan.fr/dist/commons/io/binaries/commons-io-1.4-bin.tar.gz')
|
|
md5sums=('2cef2d863797d4f06ea447199da56648')
|
|
|
|
build() {
|
|
install -d $pkgdir/usr/share/java/commons-io/ || return 1
|
|
install -m644 $srcdir/commons-io-1.4/commons-io-1.4.jar \
|
|
$pkgdir/usr/share/java/commons-io/commons-io.jar || return 1
|
|
}
|