updated on Fri Jan 20 16:18:17 UTC 2012
[aur-mirror.git] / sqlkit / PKGBUILD
blobf7fecabbd88109db501edce9681343b98da9e819
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: Your Name <youremail@domain.com>
7 pkgname=sqlkit
8 pkgver=0.9.4
9 pkgrel=1
10 pkgdesc="Sqlkit is a tool to edit data of a database (as opposed to 
11 schemas) in the easiest possible way using python and sql"
12 arch=(any)
13 url="http://sqlkit.argolinux.org"
14 license=('GPL')
15 groups=()
16 depends=('python2' 'pygtk' 'python-babel' 'python2-sqlalchemy')
17 makedepends=()
18 optdepends=()
19 provides=()
20 conflicts=()
21 replaces=()
22 backup=()
23 options=()
24 install=
25 changelog=
26 #source=($pkgname-$pkgver.tar.gz)
27 source=("http://sqlkit.argolinux.org/download/$pkgname-$pkgver.tar.gz")
28 noextract=()
29 md5sums=("5bd3d0911e7b6b6fc4324f9cda2ea33d") #generate with 'makepkg -g'
31 build() {
32   cd "$srcdir/$pkgname-$pkgver"
33   python2 setup.py install --root=$pkgdir/ --optimize=1
34   #./configure --prefix=/usr
35   #make
38 #package() {
39 #  cd "$srcdir/$pkgname-$pkgver"
40 #  python2 setup.py install --root $pkgdir/
41   #make DESTDIR="$pkgdir/" install
44 # vim:set ts=2 sw=2 et: