summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 13ac62256d031fdddf2fdd2bf5d6755a97dc99ad (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
43
44
45
46
# Maintainer: Eric Engestrom <aur [at] engestrom [dot] ch>

pkgname=egl-man-pages
pkgver=20140330.r33416
pkgrel=1
pkgdesc="EGL Man Pages"
arch=('any')
url="http://www.opengl.org/wiki/Getting_started/XML_Toolchain_and_Man_Pages"
license=('custom')
makedepends=('libxslt' 'docbook-xsl' 'subversion')
source=('svn+https://cvs.khronos.org/svn/repos/registry/trunk/public/egl/sdk/docs/man/')
md5sums=('SKIP')

pkgver() {
  cd man

  printf '%s.r%d' \
    $(svn info --show-item last-changed-date | cut -dT -f1 | tr -dc 0-9) \
    $(svn info --show-item revision)
}

build() {
  cd man

  for file in egl*.xml; do
    xsltproc --noout --nonet --xinclude \
      --stringparam funcsynopsis.style ansi \
      --stringparam man.authors.section.enabled 0 \
      --stringparam man.output.quietly 1 \
      /usr/share/xml/docbook/xsl-stylesheets-*/manpages/docbook.xsl \
      "$file"
  done

  # Output is corrupted because the xml indentation is kept
  for file in *.3G; do
    sed 's/^ \+//' -i "$file"
  done
}

package() {
  install -d "$pkgdir"/usr/share/man/man3
  install -m644 "$srcdir"/man/*.3G "$pkgdir"/usr/share/man/man3/

  install -D -m644 "$srcdir"/man/copyright.xml \
    "$pkgdir/usr/share/licenses/$pkgname/copyright.xml"
}