updated on Tue Jan 10 04:01:21 UTC 2012
[aur-mirror.git] / openttt / PKGBUILD
blobefb74c7bbb37f5ae3c76d590e6a5f0dc3b7df0f8
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Maintainer: flub <flub123@gmx.de>
7 pkgname=openttt
8 pkgver=0.3.6
9 pkgrel=1
10 pkgdesc="Software for managing table tennis tournaments. Written in java."
11 arch=('any')
12 url="http://www1.inf.tu-dresden.de/~s7480817/OpenTTT/"
13 license=('GPL')
14 groups=()
15 depends=('openjdk6')
16 makedepends=()
17 optdepends=()
18 provides=()
19 conflicts=()
20 replaces=()
21 backup=()
22 options=()
23 install=
24 changelog=
25 source=("http://www1.inf.tu-dresden.de/~s7480817/OpenTTT/installation/$pkgname-$pkgver.tar.gz")
26 noextract=()
27 md5sums=('2b74b749e5a1fdf0805c4d7eb3fee7ce')
29 build() {
30   cd "$srcdir/$pkgname-$pkgver"
31   make
34 package() {
35   cd "$srcdir/$pkgname-$pkgver"
36   make DESTDIR="$pkgdir/" install
39 # vim:set ts=2 sw=2 et: