summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e6df75e62158dec13ecc703e2b9792f80f8382d3 (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
# Maintainer: Kalashnikov I.V <ivankalashnikov@outlook.com>

pkgname=emergent
pkgver=8.2.0
pkgrel=1
pkgdesc="emergent is a comprehensive neural network simulator that enables the creation and analysis of complex, sophisticated models of the brain in the world"
arch=('i686' 'x86_64')
url="https://grey.colorado.edu/emergent"
license=('GPL')
depends=('qt5-base' 'cmake' 'subversion' 'libsndfile' 'coin')
source=("git+https://github.com/emer/cemer")
md5sums=('79fde976b2c89590fb78854aa2c04101')

build() {
  cd "$srcdir/emergent-$pkgver"
  ./configure --prefix=/usr --bindir=/usr/bin --libdir=/usr/lib --qt5
  make -j4
}

package() {
  cd "$srcdir/iv-$pkgver"
  install -Dm644 Copyright "$pkgdir/usr/share/licenses/$pkgname/COPYING"
  make DESTDIR="$pkgdir/" install
}