contrib/ocamlbuild/Pkgfile

17 lines
440 B
Plaintext
Raw Normal View History

2017-06-21 22:36:36 +02:00
# Description: Generic build tool for OCaml libraries and programs
# URL: https://github.com/ocaml/ocamlbuild
# Maintainer: Thomas Penteker, tek at serverop dot de
# Depends on: ocaml
name=ocamlbuild
2020-05-26 00:41:36 +02:00
version=0.14.0
2017-06-21 22:36:36 +02:00
release=1
source=(https://github.com/ocaml/ocamlbuild/archive/$version.tar.gz)
build() {
cd $name-$version
2020-05-26 00:41:36 +02:00
make configure OCAMLBUILD_PREFIX=/usr OCAMLBUILD_BINDIR=/usr/bin
2017-06-21 22:36:36 +02:00
make
make install DESTDIR=$PKG
}