30 lines
1.1 KiB
Bash
30 lines
1.1 KiB
Bash
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: Simon Lipp <sloonz+aur@gmail.com>
|
|
# Maintainer: Stefan Husmann < stefan-husmann@t-online.de>
|
|
|
|
pkgname=java-commons-logging
|
|
pkgver=1.3.4
|
|
pkgrel=1
|
|
pkgdesc="Wrapper interface for logging APIs in Java"
|
|
arch=(any)
|
|
url="https://commons.apache.org/logging/"
|
|
license=(APACHE)
|
|
depends=('java-runtime')
|
|
source=("http://apache.crihan.fr/dist/commons/logging/binaries/commons-logging-$pkgver-bin.tar.gz"
|
|
"http://apache.crihan.fr/dist/commons/logging/source/commons-logging-$pkgver-src.tar.gz")
|
|
sha512sums=('b0223861f7e07b7c02b5f91976eac61d3a662fc1c97934acf2c04c8b184b5e52868d36ac4e4b418848021ca14f7e718188281400a4c437cfd96dee1f50570904'
|
|
'a4049d8d7ea0d97f337e169fa5f572e32be1882e07102ab004d8b2de74170cb075a251ee9603590d6e10bee5933651e8e33e108a734fc100e8b2d5acd669cb44')
|
|
|
|
build() {
|
|
# TODO: build from sources
|
|
true
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir"/commons-logging-$pkgver/
|
|
install -d "$pkgdir"/usr/share/java/commons-logging/
|
|
install -m0644 commons-logging-$pkgver.jar \
|
|
"$pkgdir"/usr/share/java/commons-logging/commons-logging.jar
|
|
}
|