updated on Sat Jan 14 00:11:12 UTC 2012
[aur-mirror.git] / robodoc / PKGBUILD
blob523e05fdde23018289ea8ca9cd776fcb86d7d3d5
1 # Contributor: Matěj Týč <bubla@users.sourceforge.net>
3 pkgname=robodoc
4 pkgver=4.99.36
5 pkgrel=2
6 pkgdesc="ROBODoc can be used to document functions, methods, classes, variables, makefile entries, system tests, and anything else you can think of in C, C++, Fortran, Perl, shell scripts, Assembler, ... And in any other language that supports remarks"
7 arch=('i686' 'x86_64')
8 url="http://www.xs4all.nl/~rfsber/Robo/robodoc.html"
9 license=('GPL')
10 groups=()
11 depends=()
12 makedepends=()
13 install=
14 source=(http://www.xs4all.nl/~rfsber/Robo/DistSource/robodoc-4.99.36.tar.gz)
15 noextract=()
16 md5sums=('981e5c5019f4aa22fddbf57cd05e57bd')
18 build() {
19   cd "$srcdir/$pkgname-$pkgver"
20   ./configure --prefix=/usr
21   make || return 1
22   make DESTDIR=$pkgdir install || return 1
23   # robodoc has been using the example file by default, which is unacceptable
24   mv $pkgdir/usr/share/doc/robodoc/robodoc.rc $pkgdir/usr/share/doc/robodoc/robodoc.rc.example
25   }