mirror of
https://github.com/arcan1s/pkgbuild.git
synced 2025-04-26 16:27:19 +00:00
27 lines
658 B
Bash
27 lines
658 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 || return 1
|
|
}
|
|
|
|
package()
|
|
{
|
|
cd ${srcdir}/mtdec
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|