updated on Thu Jan 5 13:17:10 UTC 2012
[aur-mirror.git] / satchmo / PKGBUILD
blob112e7d7790ce7c6c7832c9133d85a4b95f933478
1 # Contributor: Jonathan Liu <net147@gmail.com>
2 pkgname=satchmo
3 pkgver=0.8.1
4 pkgrel=1
5 pkgdesc="The webshop for perfectionists with deadlines"
6 arch=('any')
7 url="http://www.satchmoproject.com/"
8 license=('custom')
9 depends=('python' 'django')
10 source=("http://www.satchmoproject.com/snapshots/$pkgname-$pkgver.tar.gz")
11 md5sums=('3e7f13edfc717d88f754f475182072d6')
13 build() { 
14   cd "$srcdir/$pkgname-$pkgver"
15   python setup.py build || return 1
16   python setup.py install --root=$pkgdir --optimize=1 || return 1
17   install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
20 # vim:set ts=2 sw=2 et: