summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e7086bf393326a151f171f0dd0f01eda94ad2f24 (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
# Maintainer: Jakob Gahde <j5lx@fmail.co.uk>

_pkgname=ppx_tools
pkgname=ocaml-${_pkgname}
pkgver=0.99.3
pkgrel=1
pkgdesc="Tools for authors of ppx rewriters and other syntactic tools"
arch=('i686' 'x86_64')
url="https://github.com/alainfrisch/ppx_tools"
license=('MIT')
depends=('ocaml')
makedepends=('ocaml-findlib')
source=("https://github.com/diml/${_pkgname}/archive/${_pkgname}_${pkgver}.tar.gz")
md5sums=('eeda1c5b2d790c4f566aeed5b960b910')

build() {
  cd "${srcdir}/${_pkgname}-${_pkgname}_${pkgver}"

  make
}

package() {
  cd "${srcdir}/${_pkgname}-${_pkgname}_${pkgver}"

  export OCAMLFIND_DESTDIR="${pkgdir}$(ocamlfind printconf destdir)"
  mkdir -p "${OCAMLFIND_DESTDIR}"

  make install
  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}