blob: 86d4e16098656aee7df24aac9dca5ea7ef10b12f (
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
36
37
38
39
40
41
42
|
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=ocaml-menhir
_pkgname=menhir
pkgver=20171222
pkgrel=0
pkgdesc="LR(1) parser generator for OCaml"
url="http://gallium.inria.fr/~fpottier/menhir/"
#arch="all !x86 !armhf !s390x" # limited by ocaml aport
license="GPL-2.0-only"
makedepends="ocaml ocamlbuild ocaml-findlib"
options="!check" # no tests provided
subpackages="$pkgname-dev $pkgname-doc"
source="http://gallium.inria.fr/~fpottier/menhir/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"
build() {
cd "$builddir"
make PREFIX=/usr TARGET=native
}
package() {
cd "$builddir"
export OCAMLFIND_DESTDIR="$pkgdir/usr/lib/ocaml"
mkdir -p "$OCAMLFIND_DESTDIR"
make install PREFIX="$pkgdir/usr" TARGET=native
rm -Rf "$pkgdir"/usr/share/doc/menhir/demos
}
dev() {
pkgdesc="$pkgdesc (development files)"
depends="$pkgname=$pkgver-r$pkgrel"
license="LGPL-2.0-only-WITH-linking-exception"
mkdir -p "$subpkgdir"/usr/lib
mv "$pkgdir"/usr/lib/ocaml "$subpkgdir"/usr/lib/
}
sha512sums="b0fe2a48d1654822f31437500d76b5361657b32340fc86f012f3a7516ad2498a670df9fa889aa0f072ec9843703c18cd709e9a03fb6d14cf2e6e6cf30445e730 menhir-20171222.tar.gz"
|