summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ee013d20206a4733c2c8e73610eeb8364ecbe1a3 (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
# Contributor: Anton Kudelin <kudelin at protonmail dot com>
# Contributor: oliver < a t >  first . in-berlin . de
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>

pkgname=camlpdf-git
pkgver=2.3.1.r21.g7557db5
pkgrel=1
pkgdesc="PDF-processing-library for OCaml"
arch=('x86_64')
license=('LGPL')
url="https://github.com/johnwhitington/camlpdf"
source=("git+$url.git")
depends=('glibc')
makedepends=('ocaml-findlib' 'git' 'gcc')
options=(!makeflags staticlibs)
sha256sums=('SKIP')

pkgver() {
  cd ${pkgname%-git}
  git describe --tags | sed 's/-/.r/' | tr - .| cut -c2-
}

build() {
  cd ${pkgname%-git}
  OCAMLFIND_DESTDIR="$pkgdir"/$(ocamlfind printconf destdir)
  make OCAMLFIND_DESTDIR="$OCAMLFIND_DESTDIR"
}

package() {
  cd ${pkgname%-git}
  OCAMLFIND_DESTDIR="$pkgdir"/$(ocamlfind printconf destdir)
  install -d $OCAMLFIND_DESTDIR
  OCAMLFIND_LDCONF="$pkgdir"/$(ocamlfind printconf ldconf)
  make install -d OCAMLFIND_DESTDIR="$OCAMLFIND_DESTDIR" OCAMLFIND_LDCONF="$OCAMLFIND_LDCONF"
}