20 lines
381 B
Plaintext
20 lines
381 B
Plaintext
|
# Description: Software system for writing extensible parsers
|
||
|
# URL: https://github.com/ocaml/camlp4
|
||
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
||
|
# Depends on: ocaml
|
||
|
|
||
|
name=camlp
|
||
|
version=4.04+1
|
||
|
release=1
|
||
|
source=(https://github.com/ocaml/camlp4/archive/$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd camlp4-${version%%+*}-1
|
||
|
|
||
|
./configure
|
||
|
|
||
|
make
|
||
|
make install DESTDIR=$PKG
|
||
|
|
||
|
}
|