summaryrefslogtreecommitdiffstats
path: root/django-registration/PKGBUILD
blob: f8caa8c84c517fe5f7a861545642fa630b3f44a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Contributor: Chaiwat Suttipongsakul <cwt at bashell dot com>
# Maintainer: Laszlo Papp <djszapi at archlinux us>

pkgname=django-registration
pkgver=0.8
pkgrel=1
pkgdesc="A simple, generic user-registration application for Django"
arch=(any)
url="http://bitbucket.org/ubernostrum/django-registration/wiki/Home"
license=('GPL')
depends=('python' 'django')
source=("http://bitbucket.org/ubernostrum/django-registration/downloads/$pkgname-$pkgver-alpha-1.tar.gz")
md5sums=('e2a31be19ebeda41d235a4c52b7bffe7')

build() {
    cd "$srcdir/$pkgname-$pkgver-alpha-1"
    python setup.py build || return 1
    python setup.py install --root=$pkgdir --optimize=1 || return 1
}