updated on Thu Jan 12 00:00:55 UTC 2012
[aur-mirror.git] / libeo / PKGBUILD
blob21de825595fbeeb2c6b434fb6334e56cf918ccef
1 #Contributor: MCMic <come.bernigaud@laposte.net>
3 pkgname=libeo
4 pkgver=1.2.0
5 pkgrel=2
6 pkgdesc="Evolving Objects is a template-based, ANSI-C++ evolutionary computation library which helps you to write your own stochastic optimization algorithms insanely fast."
7 arch=('i686' 'x86_64')
8 url="http://eodev.sourceforge.net/"
9 license=('LGPL')
10 depends=()
11 makedepends=('make' 'cmake')
12 conflicts=()
13 source=('http://sourceforge.net/projects/eodev/files/eo/1.2.0/EO-1.2.0.zip/download'
14         'size_t.patch')
15 md5sums=('1cb942f7e7d0c9d936dd901479a4af30'
16          'b35475f962cea27c12091e5736104b24')
18 build() {
19         cd $srcdir/eo
21         patch -p0 -f < ../size_t.patch
22         cmake -DCMAKE_INSTALL_PREFIX=/usr .
23         make
24         make install DESTDIR=$pkgdir