blob: 4fe907447786f618a86ca07aeb7723291cd23806 (
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
44
45
46
47
48
49
50
|
# Contributor: Matt Smith <mcs@darkregion.net>
# Maintainer: Matt Smith <mcs@darkregion.net>
pkgname=py-urwid
_pkgname=urwid
pkgver=0.9.9.1
pkgrel=2
pkgdesc="Urwid is a console user interface library for Python"
url="http://excess.org/urwid/"
arch="x86 x86_64"
license="LGPL"
depends="python"
makedepends="python-dev py-setuptools py-templayer"
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"
# generate tutorial examples, and copy documentation
python docgen_tutorial.py -s
mkdir -p "$subpkgdir"/usr/share/doc/$pkgname/tutorial_examples
cp -a example*.py "$subpkgdir"/usr/share/doc/$pkgname/tutorial_examples/
for doc in CHANGELOG reference.html tutorial.html; do
install -Dm644 $doc "$subpkgdir"/usr/share/doc/$pkgname/$doc
done
# Fix subdir perms
find "$subpkgdir"/usr/share/doc/$pkgname/ -type d -exec chmod 755 '{}' \;
}
md5sums="4722cdf898f711dcae1121aa80920152 urwid-0.9.9.1.tar.gz"
|