mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
23 lines
662 B
Bash
23 lines
662 B
Bash
# $Id: PKGBUILD 50798 2009-09-01 15:12:36Z pierre $
|
|
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
|
|
|
pkgname=facile
|
|
pkgver=1.1
|
|
pkgrel=10
|
|
pkgdesc="A Functional Constraint Library"
|
|
arch=(i686 x86_64)
|
|
url="http://www.recherche.enac.fr/opti/facile/"
|
|
license="LGPL"
|
|
makedepends=('ocaml')
|
|
depends=()
|
|
source=(http://www.recherche.enac.fr/opti/facile/distrib/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('ab673e1fc0859a42bcb639a02c2d7e9e')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure
|
|
make || return 1
|
|
mkdir -p $startdir/pkg/usr/lib/ocaml/facile
|
|
cd src
|
|
install -D -m 644 facile.cmxa facile.cmi facile.cma facile.a $startdir/pkg/usr/lib/ocaml/facile
|
|
}
|