blob: 522eb88d9aabd78f56f82bf6aca953916b956b73 (
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
26
27
28
29
30
31
|
# Maintainer: bill-auger <bill-auger@programmer.net>
# Maintainer (AUR): Simon Hanna <simon dot hanna AT serve-me DOT info>
pkgname=('python2-django-hyperkitty')
pkgver=1.2.1
pkgrel=1
pkgdesc="A Django app that provides a web user interface to access GNU Mailman archives"
arch=(any)
url=https://gitlab.com/mailman/hyperkitty
license=('GPL')
options=(!emptydirs)
makedepends=('python2-setuptools')
depends=('python2-mailmanclient' 'python2-django-crispy-forms' 'python2-django-rest-framework'
'python2-social-auth' 'python2-django-gravatar' 'python2-django-paintstore'
'python2-django-compressor' 'python2-django-browserid' 'python2-django-haystack'
'python2-pytz' 'python2-dateutil' 'python2-enum34' 'python2-networkx'
'python2-robot-detection' 'python2-django-extensions' 'sassc')
_upstream_name='hyperkitty'
_release="${_upstream_name}-v${pkgver}"
source=(https://gitlab.com/mailman/${_upstream_name}/-/archive/v${pkgver}/${_release}.tar.gz)
sha256sums=('b5d0064a2af3f36b055f7aa07f6f0828776d3437357ecb2e9b7d5d4e5bbceaf9')
package()
{
cd "$srcdir/${_release}"
python2 setup.py install --root="$pkgdir/" --optimize=1
}
|