updated on Tue Jan 10 12:02:00 UTC 2012
[aur-mirror.git] / conan-svn / PKGBUILD
blob23648559e04ca1827b289d7b916661198e8fdb2f
1 # Contributor: Ricardo Honorato-Zimmer <rata@cbuc.cl>
3 pkgname=conan-svn
4 pkgver=481
5 pkgrel=1
6 pkgdesc="COmplex Network ANalysis - C++/Python library to construct, analize and infere complex networks"
7 arch=('i686' 'x86_64')
8 url="http://www.cbuc.cl/projects/conan/"
9 license=('GPL3')
10 depends=('boost' 'gsl' 'python')
11 makedepends=('make' 'gcc' 'subversion')
12 conflicts=('conan')
13 replaces=('conan')
14 source=()
15 md5sums=()
17 _svntrunk="https://www.cbuc.cl/svn/conan"
18 _svnmod="conan"
20 build() {
21   msg "Starting SVN checkout..."
22   cd ${srcdir}
23   if [ -d $_svnmod/.svn ]; then
24     (cd $_svnmod && svn up -r $pkgver)
25   else
26     svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
27   fi
29   msg "Building and installing Conan..."
30   cd ${srcdir}/conan/
31   ./configure --prefix=/usr
32   make || return 1
33   make DESTDIR="${pkgdir}" install || return 1