mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
29 lines
861 B
Plaintext
29 lines
861 B
Plaintext
# Contributor: Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>
|
|
# Maintainer: Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>
|
|
pkgname=py-django-appconf
|
|
_pkgname=django-appconf
|
|
pkgver=1.0.2
|
|
pkgrel=1
|
|
pkgdesc="Packaged application configuation helper for Django"
|
|
url="http://django-appconf.readthedocs.org/"
|
|
arch="noarch"
|
|
license="BSD"
|
|
depends="py-django py-six"
|
|
makedepends="py-setuptools"
|
|
options="!check" # No test suite available
|
|
source="https://files.pythonhosted.org/packages/source/d/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python2 setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
python2 setup.py install --root "$pkgdir"
|
|
}
|
|
|
|
sha512sums="07c823831385b6705b9ed5fd45f6cf28242919f26cc32feef140d0045bf2951f971573eea126ac1eb9e29c9aa8b5ebebabcd92ee22c549cced54dbd228c242a3 django-appconf-1.0.2.tar.gz"
|