summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c798d866c642f0571645126d5cc61b06fef9bd81 (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: robertfoster

pkgname='python-flask-themes2'
pkgver=1.0.0
pkgrel=1
pkgdesc="Easily theme your Flask app"
url="https://github.com/sysr-q/flask-themes2"
license=('MIT')
arch=('any')
depends=('python-flask' 'python-simplejson')
makedepends=('python-setuptools')
_realname=Flask-Themes2
source=("https://files.pythonhosted.org/packages/8a/f8/9bdefea5451745fcd102e42e4b565691f99afb88d542e7fc710536422d6b/${_realname}-$pkgver.tar.gz")

build() {
    cd "$srcdir/${_realname}-$pkgver"
    python setup.py build
}

package() {
    cd "${srcdir}/${_realname}-$pkgver"
    python setup.py install --root="$pkgdir"
}

md5sums=('f8aac4b4464712f8567d036a31624fd7')