blob: 921a6b743affe8d7b7e1a202142fc84b4cdeb55e (
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
53
54
|
# Contributor: Matt Smith <mcs@darkregion.net>
# Maintainer: Matt Smith <mcs@darkregion.net>
pkgname=py-sphinx
_pkgname=Sphinx
pkgver=1.0.6
pkgrel=0
pkgdesc="Python Documentation Generator"
url="http://sphinx.pocoo.org/"
arch="noarch"
license="BSD"
depends="python py-docutils py-jinja2 py-pygments"
makedepends="python-dev py-setuptools"
install=
subpackages="$pkgname-doc"
source="http://pypi.python.org/packages/source/${_pkgname:0:1}/$_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 AUTHORS CHANGES EXAMPLES LICENSE README TODO; do
install -Dm644 $doc "$subpkgdir"/usr/share/doc/$pkgname/
done
# Note: Documentation in the 'doc' directory (below), needs to be built
# with sphinx-build once sphinx is installed (see README for details).
#
# Leaving as-is; will be up to the individual user that's interested.
mkdir -p "$subpkgdir"/usr/share/doc/$pkgname/doc/
cp -R ./doc/* "$subpkgdir"/usr/share/doc/$pkgname/doc/
chmod -R 644 "$subpkgdir"/usr/share/doc/$pkgname/doc/
# Fix subdir perms
find "$subpkgdir"/usr/share/doc/$pkgname/ -type d -exec chmod 755 '{}' \;
}
md5sums="4cdb86c7bb7fa2498ac12db844784769 Sphinx-1.0.6.tar.gz"
|