summaryrefslogtreecommitdiffstats
path: root/abs/extra/camlp4/PKGBUILD
blob: ad29815f8ba8f6022d5d88afc164cdcc2b1063a5 (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
# $Id$
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Tobias Powalowski <tpowa@archlinux.org>

pkgname=camlp4
pkgver=4.04
pkgrel=1
pkgdesc='Caml preprocessor and pretty-printer'
arch=('x86_64' 'i686')
license=('GPL2')
url='https://github.com/ocaml/camlp4/releases'
depends=('ocaml>=4.04.0')
makedepends=('git' 'ocamlbuild')
options=('!makeflags' '!emptydirs' 'staticlibs')
source=("git://github.com/ocaml/camlp4#branch=$pkgver")
md5sums=('SKIP')

build() {
  cd "$pkgname"

  ./configure
  make all camlp4/META
}

package() {
  make -C "$pkgname" \
    BINDIR="$pkgdir/usr/bin" \
    LIBDIR="$pkgdir/usr/lib/ocaml" \
    PKGDIR="$pkgdir/usr/lib/ocaml" \
    install install-META
}

# vim:set ts=2 sw=2 et: