mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
22 lines
763 B
Bash
22 lines
763 B
Bash
# $Id: PKGBUILD 36048 2009-04-19 19:31:13Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=gnome-doc-utils
|
|
pkgver=0.16.1
|
|
pkgrel=1
|
|
pkgdesc="Documentation utilities for Gnome"
|
|
arch=(i686 x86_64)
|
|
license=('GPL' 'LGPL')
|
|
depends=('libxslt>=1.1.24' 'python>=2.6' 'docbook-xml' 'rarian>=0.8.1')
|
|
makedepends=('pkgconfig' 'intltool')
|
|
url="http://www.gnome.org"
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.16/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('85d4bba44773f6162de72e81e8bd0ab0')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man \
|
|
--localstatedir=/var --disable-scrollkeeper || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|