summaryrefslogtreecommitdiff
path: root/pcr/ocaml-yojson/PKGBUILD
blob: 3223a919970b2065ad171a727bbba12861837199 (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 (Arch): Leonard de Ruijter <alderuijter@gmail.com>
# Contributor (Arch): Serge Zirukin <ftrvxmtrx@gmail.com>
# Contributor (Arch): Sergei Lebedev <superbobry@gmail.com>
# Contributor (Arch): Justin Davis <jrcd 83 at gmail>
# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>

pkgname=ocaml-yojson
_oname=yojson
pkgver=1.3.2
pkgrel=2
pkgdesc='An optimized parsing and printing library for JSON'
arch=('i686' 'x86_64')
options=('!strip' 'staticlibs')
license=('BSD')
depends=('ocaml-biniou' 'ocaml-easy-format')
makedepends=('ocaml-findlib' 'cppo')
url='http://mjambon.com/yojson.html'
source=("https://github.com/mjambon/${_oname}/archive/v${pkgver}.tar.gz")
options=(!makeflags)
sha256sums=('eff510621efd6dcfb86b65eaf1d4d6f3b9b680143d88e652b6f14072523a2351')
build() {
  cd $srcdir/$_oname-$pkgver
  make && make doc
}

package() {
  cd $srcdir/$_oname-$pkgver
  mkdir -p $pkgdir/usr/bin $pkgdir$(ocamlfind printconf destdir)
  make OCAMLFIND_DESTDIR=${pkgdir}$(ocamlfind printconf destdir) install BINDIR="${pkgdir}/usr/bin"
  install -dm755 "${pkgdir}/usr/share/doc/$pkgname"
  install -t "${pkgdir}/usr/share/doc/$pkgname" doc/*
}