Date: Wednesday, October 19, 2016 @ 07:21:13 Author: juergen Revision: 278985
New package: ocamlbuild (was split from ocaml) Added: ocamlbuild/ ocamlbuild/repos/ ocamlbuild/trunk/ ocamlbuild/trunk/PKGBUILD ----------+ PKGBUILD | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) Added: ocamlbuild/trunk/PKGBUILD =================================================================== --- ocamlbuild/trunk/PKGBUILD (rev 0) +++ ocamlbuild/trunk/PKGBUILD 2016-10-19 07:21:13 UTC (rev 278985) @@ -0,0 +1,27 @@ +# $Id$ +# Maintainer: Jürgen Hötzel <[email protected]> + +pkgname=ocamlbuild +pkgver=0.9.2 +pkgrel=1 +pkgdesc='Build tool, that has built-in rules for building OCaml library and programs' +arch=('x86_64' 'i686') +license=('GPL2') +url='https://github.com/ocaml/ocamlbuild/releases' +depends=('ocaml>=4.03.0') +options=('!makeflags') +source=("https://github.com/ocaml/${pkgname}/archive/$pkgver.tar.gz") +md5sums=('b8c90bac4e54e3b5b8243c4845122dd2') + +build() { + cd "$srcdir/$pkgname-$pkgver" + make configure + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir/" install +} + + Property changes on: ocamlbuild/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
