diff options
Diffstat (limited to 'pcr/ocaml-xmlm/PKGBUILD')
-rw-r--r-- | pcr/ocaml-xmlm/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/pcr/ocaml-xmlm/PKGBUILD b/pcr/ocaml-xmlm/PKGBUILD new file mode 100644 index 000000000..2476a3e9b --- /dev/null +++ b/pcr/ocaml-xmlm/PKGBUILD @@ -0,0 +1,32 @@ +# Contributor (Arch) : charlesthehawk -- yahoo -- com +# Contributor (Arch) : Gregory BELLIER <gregory.bellier -- gmail -- com> +# Maintainer (Parabola) : Aurélien DESBRIÈRES <aurelien@hackers.camp> + +pkgname=ocaml-xmlm +pkgver=1.1.1 +pkgrel=1 +pkgdesc="OCaml xml manipulation module" +arch=('i686' 'x86_64') +url="http://erratique.ch/software/xmlm/" +license=('BSD') +makedepends=('ocaml ocaml-findlib') +options=('!strip') +install= +source=(http://erratique.ch/software/xmlm/releases/xmlm-$pkgver.tbz) + +build() { + + cd "$srcdir/xmlm-$pkgver" + ocaml setup.ml -configure --prefix ${pkgdir}/usr + ocaml setup.ml -build +} + +package() { + cd "${srcdir}/xmlm-${pkgver}" + mkdir -p ${pkgdir}$(ocamlfind printconf destdir) + env OCAMLFIND_DESTDIR=${pkgdir}$(ocamlfind printconf destdir) \ + ocaml setup.ml -install +} + +# vim:set ts=2 sw=2 et: + |