summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b2205e6b42bb86a54db29b40156077b60cf0a6f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#
# SimGrid: Grid and Cloud Simulator
#

# Maintainer: Javier J. Salmeron-Garcia <javsalgar@gmail.com>
pkgname=simgrid
pkgver=3.11.1
pkgrel=1
pkgdesc='Grid and Cloud Simulator (Stable Version)'
arch=('i686' 'x86_64')
url='http://simgrid.gforge.inria.fr/index.html'
license=('GPL')
source=('http://gforge.inria.fr/frs/download.php/file/33686/SimGrid-3.11.1.tar.gz')
depends=('boost')
makedepends=('cmake')
md5sums=('SKIP')

pkgver() {
  echo 3.11.1  
}


package() {
        mkdir -p $pkgdir/opt/simgrid
	cd $srcdir/SimGrid-3.11/
	cmake -DCMAKE_INSTALL_PREFIX=$pkgdir/opt/simgrid .
	make
	make install
}