summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 326aa76c35832b34b807151aa6edb34a390036b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Maintainer: Patrick Northon <northon_patrick3@yahoo.ca>
# Contributor: Brian Bidulock <bidulock@openss7.org>
# Contributor: Jan de Groot <jgc@archlinux.org>

pkgname=gnome-doc-utils
pkgver=0.20.10+16+gc03cc09
pkgrel=4
pkgdesc="Documentation utilities for Gnome"
arch=('any')
license=('GPL' 'LGPL')
depends=(docbook-xml rarian python2-libxml2)
makedepends=(intltool gnome-common git)
url="https://www.gnome.org"
_commit=c03cc0963996934e03587af3e351c2bb9dab6b2a  # master
source=("git+https://git.gnome.org/browse/gnome-doc-utils#commit=$_commit")
source=("git+https://gitlab.gnome.org/Archive/gnome-doc-utils.git#commit=$_commit")
sha256sums=('SKIP')

pkgver() {
  cd $pkgname
  git describe --tags | sed 's/-/+/g'
}

prepare() {
  cd $pkgname
  rm -f m4/glib-gettext.m4
  sed -i 's/SUBDIRS = .*/SUBDIRS = /' 'doc/Makefile.am'
  NOCONFIGURE=1 ./autogen.sh
}

build() {
  cd "$pkgname"
  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
      --sysconfdir=/etc --mandir=/usr/share/man \
      --localstatedir=/var --disable-scrollkeeper
  make
}

package() {
  cd "$pkgname"
  make DESTDIR="$pkgdir" install
}