updated on Tue Jan 10 04:01:21 UTC 2012
[aur-mirror.git] / ocaml-magic / PKGBUILD
blob8a44713413f3ebfa35a491842d272d97dd16e0df
1 # Maintainer: Thomas S Hatch <thatch45 at gmail dot com>
2 # Contributor: Luciano A. Ferrer <laferrer@gmail.com>
3 pkgname=ocaml-magic
4 pkgver=0.7.3
5 pkgrel=3
6 arch=('i686' 'x86_64')
7 license=('GPL')
8 pkgdesc="OCaml binding for libmagic (to determine the type of files)."
9 url="https://sourceforge.net/projects/ocaml-magic"
10 depends=('ocaml')
11 makedepends=('ocaml-findlib')
12 options=('!strip')
13 source=("http://downloads.sourceforge.net/ocaml-magic/${pkgname}-${pkgver}.tar.gz")
14 md5sums=('5b8a4d149fe8ce095ab8115f2e49beba')
16 OCAMLFIND_DESTDIR="${pkgdir}$(ocamlfind printconf destdir)"
18 build() {
19   cd "${srcdir}/${pkgname}-${pkgver}"
20   ./configure --prefix=/usr
21   make all
24 package() {
25   cd "${srcdir}/${pkgname}-${pkgver}"
26   mkdir -p $OCAMLFIND_DESTDIR
27   make \
28     OCAMLFIND_DESTDIR=$OCAMLFIND_DESTDIR \
29     OCAMLFIND_LDCONF=ignore \
30     install