1
0
Fork 0

Initial commit

This commit is contained in:
Aaron Lindsay 2013-12-12 20:42:35 -05:00
commit 001916e9bd
1 changed files with 22 additions and 0 deletions

22
PKGBUILD Normal file
View File

@ -0,0 +1,22 @@
# Maintainer: Aaron Lindsay <aaron@aclindsay.com>
pkgname=python2-djblets
pkgver=0.6.14
pkgrel=2
pkgdesc="A collection of useful extensions for Django."
license=('MIT')
arch=('i686' 'x86_64' 'armv7h')
url="https://github.com/djblets/djblets"
depends=('python2')
makedepends=('python2-distribute')
provides=("python-djblets=$pkgver" "djblets=$pkgver")
conflicts=('python-djblets' 'djblets')
replaces=('python-djblets' 'djblets')
source=(https://github.com/djblets/djblets/tarball/release-0.6.14)
sha256sums=('17057fe54a01112ddfd39615956019ad0e05ffd6dd4a044d7a3dc56989fc3ec8')
build() {
cd ${srcdir}/djblets-djblets-*
python2 setup.py install --root=${pkgdir}
}