mirror of
https://github.com/archlinux/aur.git
synced 2026-02-28 14:23:31 +01:00
statsvn: create with 0.7.0
This commit is contained in:
commit
1c2e1c1433
4 changed files with 50 additions and 0 deletions
16
.SRCINFO
Normal file
16
.SRCINFO
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
pkgbase = statsvn
|
||||
pkgdesc = retrieves information from a subversion repository (tables, charts)
|
||||
pkgver = 0.7.0
|
||||
pkgrel = 1
|
||||
url = http://sourceforge.net/projects/statsvn/
|
||||
arch = any
|
||||
license = LGPL
|
||||
depends = java-environment
|
||||
depends = bash
|
||||
source = http://downloads.sourceforge.net/project/statsvn/statsvn/0.7.0/statsvn-0.7.0.zip
|
||||
source = statsvn
|
||||
md5sums = 94254c808ca50bd215abd0e5b20b01d6
|
||||
md5sums = 8435f081a8b7446cc9e26b13f5b76548
|
||||
|
||||
pkgname = statsvn
|
||||
|
||||
8
.gitignore
vendored
Normal file
8
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
*.tar.gz
|
||||
*.tar.xz
|
||||
*.tgz
|
||||
*.rpm
|
||||
*.zip
|
||||
*.bz2
|
||||
src/
|
||||
pkg/
|
||||
24
PKGBUILD
Normal file
24
PKGBUILD
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# Contributor: Johannes Dewender arch at JonnyJD dot net
|
||||
pkgname=statsvn
|
||||
pkgver=0.7.0
|
||||
pkgrel=1
|
||||
pkgdesc="retrieves information from a subversion repository (tables, charts)"
|
||||
arch=('any')
|
||||
url="http://sourceforge.net/projects/statsvn/"
|
||||
license=('LGPL')
|
||||
depends=('java-environment' 'bash')
|
||||
makedepends=()
|
||||
checkdepends=()
|
||||
optdepends=()
|
||||
provides=()
|
||||
conflicts=()
|
||||
replaces=()
|
||||
source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.zip statsvn)
|
||||
md5sums=('94254c808ca50bd215abd0e5b20b01d6'
|
||||
'8435f081a8b7446cc9e26b13f5b76548')
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
install -Dm 644 statsvn.jar "$pkgdir/usr/share/java/statsvn/statsvn.jar"
|
||||
install -D ../statsvn "$pkgdir/usr/bin/statsvn"
|
||||
}
|
||||
2
statsvn
Normal file
2
statsvn
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
"$JAVA_HOME/bin/java" -jar /usr/share/java/statsvn/statsvn.jar "$@"
|
||||
Loading…
Add table
Reference in a new issue