2017-06-21 22:36:20 +02:00
|
|
|
# Description: Software system for writing extensible parsers
|
|
|
|
# URL: https://github.com/ocaml/camlp4
|
|
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
2017-06-25 23:21:02 +10:00
|
|
|
# Depends on: ocamlbuild
|
2017-06-21 22:36:20 +02:00
|
|
|
|
|
|
|
name=camlp
|
2020-05-27 11:18:11 +00:00
|
|
|
version=4.10+1
|
2017-06-21 22:36:20 +02:00
|
|
|
release=1
|
2020-05-27 11:18:11 +00:00
|
|
|
source=(https://github.com/ocaml/camlp4/archive/$version/$name-$version.tar.gz)
|
2017-06-21 22:36:20 +02:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd camlp4-${version%%+*}-1
|
|
|
|
|
|
|
|
./configure
|
|
|
|
|
|
|
|
make
|
|
|
|
make install DESTDIR=$PKG
|
|
|
|
}
|