updated on Sun Jan 15 16:02:00 UTC 2012
[aur-mirror.git] / datakiosk / PKGBUILD
blob47171f7f5470ea14e61cbac02f61fea6562a3354
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 # Contributor: Paulo Freire <paulofreire gmail com>
7 pkgname=datakiosk
8 pkgver=0.7
9 pkgrel=1
10 pkgdesc="DataKiosk is a JuK-like database interface tool for generic SQL databases"
11 arch=(i686)
12 url="http://extragear.kde.org/apps/datakiosk/"
13 license=('GPL')
14 groups=()
15 depends=('kdelibs' 'qt3')
16 makedepends=()
17 provides=()
18 conflicts=()
19 replaces=()
20 backup=()
21 options=()
22 install=
23 source=(http://web.mit.edu/~treat/Public/$pkgname-$pkgver.tar.gz)
24 noextract=()
25 md5sums=('44e02d025f663c82103abb82b631fe45')
27 build() {
28   cd "$srcdir/$pkgname-$pkgver"
30   ./configure --prefix=/opt/kde
31   make || return 1
32   make DESTDIR="$pkgdir" install
35 # vim:set ts=2 sw=2 et: