mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 21:47:13 +08:00
23 lines
780 B
Bash
23 lines
780 B
Bash
# $Id: PKGBUILD 78617 2010-04-27 17:22:10Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=gnome-doc-utils
|
|
pkgver=0.20.2
|
|
pkgrel=2
|
|
pkgdesc="Documentation utilities for Gnome"
|
|
arch=('any')
|
|
license=('GPL' 'LGPL')
|
|
depends=('libxslt>=1.1.26' 'python2' 'docbook-xml' 'rarian>=0.8.1')
|
|
makedepends=('pkgconfig' 'intltool')
|
|
url="http://www.gnome.org"
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.20/${pkgname}-${pkgver}.tar.bz2)
|
|
sha256sums=('f6c0124f61b9400c63da630dd3a9ac1b738eac0058da245661ff699fad267aca')
|
|
|
|
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
|
|
}
|