summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ab9dc5c1766e947026ba3eeabdeb568f9bd2b788 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Maintainer: getzze <getzze at gmail dot com>

_module=django-dynamic-preferences
pkgname=python-${_module}
pkgver=1.17.0
pkgrel=1
pkgdesc="Dynamic global and instance settings for your django project"
arch=(any)
url="https://github.com/agateblue/django-dynamic-preferences"
license=(BSD)
depends=(python-django python-six python-persisting-theory)
makedepends=(python-setuptools)
source=(${_module}-${pkgver}.tar.gz::https://github.com/agateblue/django-dynamic-preferences/archive/refs/tags/${pkgver}.tar.gz)
sha256sums=('00a66a054cedc2f656b99b6e49f322a232167fef7219f5f01e7940c3ec862e15')


build() {
  cd "${_module}-${pkgver}"
  python setup.py build
}

package() {
  cd "${_module}-${pkgver}"
  python setup.py install --root="$pkgdir" --optimize=1
}