summaryrefslogtreecommitdiff
path: root/community/ocaml-findlib/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/ocaml-findlib/PKGBUILD
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/ocaml-findlib/PKGBUILD')
-rw-r--r--community/ocaml-findlib/PKGBUILD37
1 files changed, 0 insertions, 37 deletions
diff --git a/community/ocaml-findlib/PKGBUILD b/community/ocaml-findlib/PKGBUILD
deleted file mode 100644
index a78465650..000000000
--- a/community/ocaml-findlib/PKGBUILD
+++ /dev/null
@@ -1,37 +0,0 @@
-# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
-# Contributor: Thomas S Hatch <thatch45 at gmail dot com>
-# Contributor: Sebastian Wiesner <lunaryorn googlemail com>
-# Contributor: Benjamin Andresen <benny(at)klapmuetz(dot)org>
-# Contributor: scj <scj archlinux us>
-
-pkgname=ocaml-findlib
-pkgver=1.3.3
-pkgrel=2
-license=('MIT')
-arch=('i686' 'x86_64')
-pkgdesc='Objective Caml (OCaml) package manager'
-url='http://projects.camlcity.org/projects/findlib.html'
-depends=('ocaml')
-source=("http://download.camlcity.org/download/findlib-$pkgver.tar.gz")
-options=('!strip' 'zipman') # otherwise the bytecode gets broken
-md5sums=('a4c22ad5e0d38367a73cf58a25fcbebd')
-
-build() {
- cd "$srcdir/findlib-$pkgver"
-
- ./configure -config /etc/findlib.conf -sitelib /usr/lib/ocaml -mandir /usr/share/man
- make all opt
-}
-
-package () {
- cd "$srcdir/findlib-$pkgver"
-
- make prefix="$pkgdir" install
-
- # add the old site-lib to the path to maintain compatibility with old style packages
- sed -i 's/path=\"\/usr\/lib\/ocaml\"/path="\/usr\/lib\/ocaml:\/usr\/lib\/ocaml\/site-lib"/' \
- "${pkgdir}/etc/findlib.conf"
-
- install -m755 src/findlib/ocamlfind_opt "$pkgdir/usr/bin/"
- install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}