summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6f7097091091c5069f0915f79927cac355fa88f9 (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
# Maintainer: oliver < a t >  first . in-berlin . de
pkgname=camlpdf
pkgver=2.2
pkgrel=1
pkgdesc="PDF-processing-library for OCaml"
arch=('i686' 'x86_64')
license=('LGPL')
source=(https://github.com/johnwhitington/camlpdf/archive/v$pkgver.tar.gz)
md5sums=('051400c4753eb788044fe4450f0b5174')
url="https://github.com/johnwhitington/camlpdf"
depends=('glibc')
makedepends=('ocaml-findlib')
options=(!makeflags staticlibs)
#
build() {
cd ${srcdir}/camlpdf-$pkgver
#
OCAMLFIND_DESTDIR="$pkgdir/$(ocamlfind printconf destdir)"
make OCAMLFIND_DESTDIR="${OCAMLFIND_DESTDIR}"
}
#
#
package() {
cd ${srcdir}/camlpdf-$pkgver
#
OCAMLFIND_DESTDIR="$pkgdir/$(ocamlfind printconf destdir)"
mkdir -p ${OCAMLFIND_DESTDIR}
#
OCAMLFIND_LDCONF="$pkgdir/$(ocamlfind printconf ldconf)"
#
make install -d OCAMLFIND_DESTDIR="${OCAMLFIND_DESTDIR}" OCAMLFIND_LDCONF="${OCAMLFIND_LDCONF}"
}