pkgbuild/gromacs_mtdec/PKGBUILD
arcan1s 4fa735804d Edited pkgbuilds
- removed "|| return 1"
2013-09-28 21:51:57 +04:00

27 lines
634 B
Bash

# Maintainer: Evgeniy "arcanis" Alexeev <esalexeev@gmail.com>
pkgname=gromacs_mtdec
pkgver=3.3.2
pkgrel=1
pkgdesc="GROMACS with additional implementation of metadynamics in essential coordinates"
arch=('i686' 'x86_64')
url="http://web.vscht.cz/spiwokv/index.html"
license=('GPL')
depends=('fftw' 'lesstif' 'libsm' 'libx11' 'libxml2' 'perl')
options=('!libtool')
source=(http://web.vscht.cz/spiwokv/mtdec/gromacs332mtdec.tar.gz)
md5sums=('545bd6d903d8e8e94bd069c6368b6f25')
build()
{
cd ${srcdir}/mtdec
./configure --prefix=/usr --program-suffix=_mtd
make
}
package()
{
cd ${srcdir}/mtdec
make DESTDIR=${pkgdir} install
}