updated on Tue Jan 10 12:02:00 UTC 2012
[aur-mirror.git] / epydoc-svn / PKGBUILD
blob8a6efe51a9aa0bf80fdb79496aef463c8e24790e
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # See http://wiki.archlinux.org/index.php/VCS_PKGBUILD_Guidelines
7 # for more information on packaging from bazaar sources.
9 # Contributor: Alexandre Défossez <alexandre.defossez at google famous mailing service>
10 pkgname=epydoc-svn
11 pkgver=3
12 pkgrel=1
13 pkgdesc="Epydoc is a tool for generating API documentation for Python modules,based on their docstrings."
14 arch=('any') # python
15 url="http://epydoc.sourceforge.net/"
16 license=('MIT')
17 groups=()
18 depends=('python2' 'graphviz' 'docutils')
19 makedepends=('subversion')
20 provides=(epydoc) 
21 conflicts=(epydoc)
22 replaces=()
23 backup=()
24 options=()
25 install=
26 source=()
27 noextract=()
29 build() {
30   cd "$srcdir"
31   msg "Downloading latest svn version..."
32   
33   svn co https://epydoc.svn.sourceforge.net/svnroot/epydoc/trunk/epydoc $srcdir/svn_src
35   rm -rf "$srcdir/svn-build"
36   cp -r "$srcdir/svn_src/src" "$srcdir/svn-build"
37   cd "$srcdir/svn-build"
39   python2 setup.py build || return 1
40
42 package(){
43   cd "$srcdir/svn-build"
44   python2 setup.py install --root="$pkgdir" || return 1
45   install -D -m644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE