summaryrefslogtreecommitdiff
path: root/pcr/django-tagging/PKGBUILD
blob: 83f808280b6c947be52857d8b6a2f1db37dfaa72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Contributor: Ryan Coyner <rcoyner@gmail.com>
# Contributor: James Pearson <james.m.pearson+arch@gmail.com>
# Maintainer : Parabola GNU / Linux-libre Aurélien Desbrières <aurelien@cwb.io>

pkgname=django-tagging
pkgver=0.3.1
pkgrel=2
pkgdesc="A generic tagging application for Django projects"
arch=('i686' 'x86_64')
url="http://code.google.com/p/django-tagging/"
license=('MIT')
depends=('python2')
source=(http://django-tagging.googlecode.com/files/django-tagging-$pkgver.tar.gz)

build() { 
    cd $srcdir/django-tagging-$pkgver
    python2 setup.py build || return 1
    python2 setup.py install --root=$pkgdir || return 1
    install -D -m644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
}