blob: 7bcdcf27e788993bca95a1a07245468b5c3ebb9b (
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
51
52
|
# Contributor: Matt Smith <mcs@darkregion.net>
# Maintainer: Matt Smith <mcs@darkregion.net>
pkgname=urwid
pkgver=0.9.9.1
pkgrel=1
pkgdesc="Urwid is a console user interface library for Python"
url="http://excess.org/urwid/"
license="LGPL"
depends="python"
makedepends="python-dev"
install=
subpackages="$pkgname-doc"
source="http://excess.org/$pkgname/$pkgname-$pkgver.tar.gz
tutorial_examples.tar.gz
"
_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
cd "$_builddir"
# apply patches here
}
build() {
return 0
}
package() {
cd "$_builddir"
python setup.py install --root "$pkgdir"
}
doc() {
mkdir -p "$subpkgdir"/usr/share/doc/$pkgname
cd "$_builddir"
# generate tutorial examples, and tar it up
# requires templayer to generate (how should subpackage deps be handled?)
# for now, just including the generated tutorial_examples.tar.gz
#python docgen_tutorial.py -s
#mkdir tutorial_examples
#mv example*.py tutorial_examples/
#tar -czf tutorial_examples.tar.gz tutorial_examples/
# copy documentation and example tarball
install -Dm644 reference.html "$subpkgdir"/usr/share/doc/$pkgname/reference.html
install -Dm644 tutorial.html "$subpkgdir"/usr/share/doc/$pkgname/tutorial.html
install -Dm644 "$startdir"/tutorial_examples.tar.gz "$subpkgdir"/usr/share/doc/$pkgname/tutorial_examples.tar.gz
}
md5sums="4722cdf898f711dcae1121aa80920152 urwid-0.9.9.1.tar.gz
6bd01421e332cd40b53d81911d02bc5b tutorial_examples.tar.gz"
|