summaryrefslogtreecommitdiffstats
path: root/testing/py-templayer/APKBUILD
blob: eeefd4bb53bfda0f6e9f0332d937a3bda956f341 (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
32
33
34
35
36
37
38
39
40
41
42
43
# Contributor: Matt Smith <mcs@darkregion.net>
# Maintainer: Matt Smith <mcs@darkregion.net>
pkgname=py-templayer
_pkgname=templayer
pkgver=1.5.1
pkgrel=1
pkgdesc="Templayer is a layered template library for Python and Django"
url="http://excess.org/templayer/"
arch="noarch"
license="LGPL"
depends="python"
makedepends="python-dev py-setuptools"
install=
subpackages="$pkgname-doc"
source="http://excess.org/$_pkgname/$_pkgname-$pkgver.tar.gz"

_builddir="$srcdir"/$_pkgname-$pkgver

prepare() {
        cd "$_builddir"
        # apply patches here
}

build() {
        cd "$_builddir"
        python setup.py build || return 1
}

package() {
        cd "$_builddir"
        python setup.py install --root "$pkgdir"
}

doc() {
        cd "$_builddir"

        mkdir -p "$subpkgdir"/usr/share/doc/$pkgname
        for doc in reference.html tutorial.html tutorial_examples.tar.gz; do
                install -Dm644 ./docs/$doc "$subpkgdir"/usr/share/doc/$pkgname/$doc
        done
}

md5sums="9d1a3aa0cece34a2492792278aad406d  templayer-1.5.1.tar.gz"