core/gtk-doc/PKGBUILD
Phil Miller 66dae2269b * Fixes
- gtk-doc: added docs as option to keep needed files
- lirc-utils: fixed header files - still don't build
- broken pkgs down to 6
2010-05-19 00:14:13 +00:00

23 lines
732 B
Bash

# $Id: PKGBUILD 73819 2010-03-28 19:03:45Z jgc $
# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgname=gtk-doc
pkgver=1.14
pkgrel=1
pkgdesc="Documentation tool for public library API"
arch=(i686 x86_64)
license=('GPL' 'FDL')
depends=('docbook-xsl' 'gnome-doc-utils' 'perl')
makedepends=('pkgconfig' 'jade')
optdepends=('jade: SGML support')
url="http://www.gtk.org/gtk-doc/"
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2)
sha256sums=('a92aa890d35ff9ac152d3a6957dc66d486046c1993538eaf2be13b4d4d089c03')
options=('docs')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr || return 1
make || return 1
make DESTDIR="${pkgdir}" install || return 1
}