summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8cf0a186ee6be2fa7825fd2130879979f4774114 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Maintainer: Roberto Catini <roberto.catini@gmail.com>
pkgname=python-turbogears
pkgver=2.3.8
pkgrel=1
pkgdesc="A hybrid web framework able to act both as a Full Stack framework or as a Microframework"
arch=('any')
url="http://www.turbogears.org/"
license=('MIT')
depends=('python' 'python-webob' 'python-crank' 'python-beaker' 'python-repoze.lru')
source=("git://github.com/TurboGears/tg2.git#tag=tg$pkgver")
md5sums=('SKIP')

package() {
  cd "$srcdir/tg2"
  python setup.py install --root="$pkgdir/" --optimize=1
  install -D -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}