summaryrefslogtreecommitdiff
path: root/community/ocaml-extlib
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2012-01-09 13:47:51 +0000
committerParabola <dev@list.parabolagnulinux.org>2012-01-09 13:47:51 +0000
commit7a3611f5caa5e34c1f2b582640f97b733110ae63 (patch)
tree5b0baf1ad1b36444ffbf73707a377b15fc67692f /community/ocaml-extlib
parent46783b68621b6ad45cdd9ed64cfa8cdcfbc6f318 (diff)
Mon Jan 9 13:47:49 UTC 2012
Diffstat (limited to 'community/ocaml-extlib')
-rw-r--r--community/ocaml-extlib/PKGBUILD35
1 files changed, 0 insertions, 35 deletions
diff --git a/community/ocaml-extlib/PKGBUILD b/community/ocaml-extlib/PKGBUILD
deleted file mode 100644
index 42af092f3..000000000
--- a/community/ocaml-extlib/PKGBUILD
+++ /dev/null
@@ -1,35 +0,0 @@
-# Maintainer: Thomas S Hatch <thatch45 at gmail dot com>
-# Contributor: Massimiliano Brocchini <brocchini@netseven.it>
-
-pkgname=ocaml-extlib
-pkgver=1.5.1
-pkgrel=4
-pkgdesc="Extends the OCaml standard library"
-arch=('i686' 'x86_64')
-url="http://code.google.com/p/ocaml-extlib/"
-license=('LGPL')
-depends=('ocaml')
-makedepends=('ocaml-findlib')
-source=(http://ocaml-extlib.googlecode.com/files/extlib-${pkgver}.tar.gz)
-md5sums=('8dc2944cbf63141347956bd353893d75')
-
-_OCAMLFIND_DESTDIR="${pkgdir}/usr/lib/ocaml"
-_DOCDIR="${pkgdir}/usr/share/doc/ocaml-extlib"
-
-build() {
- cd ${srcdir}/extlib-${pkgver}
- make all
- make opt
- sed -i 's/cp odoc_style.css/#cp odoc_style.css/g' Makefile
- sed -i 's/ocamldoc -sort -html/ocamldoc -sort -keep-code -html -colorize-code/g' Makefile
- make doc
-}
-
-package () {
- cd ${srcdir}/extlib-${pkgver}
- mkdir -p $_OCAMLFIND_DESTDIR/extlib
- mkdir -p $_DOCDIR
- install -m 0644 *.{a,cmxa,cma,cmi,cmo,mli,cmx,ml} $_OCAMLFIND_DESTDIR/extlib
- install -m 0644 META.txt $_OCAMLFIND_DESTDIR/extlib/META
- cp -r doc/* $_DOCDIR/
-}