mirror of
https://github.com/arcan1s/pkgbuild.git
synced 2025-07-23 01:49:56 +00:00
Added current pkgbuilds
This commit is contained in:
30
mpqc-shared/PKGBUILD
Normal file
30
mpqc-shared/PKGBUILD
Normal file
@ -0,0 +1,30 @@
|
||||
# Maintainer: Evgeniy "arcanis" Alexeev <esalexeev@gmail.com>
|
||||
|
||||
pkgname=mpqc-shared
|
||||
_pkgname=mpqc
|
||||
pkgver=2.3.1
|
||||
pkgrel=1
|
||||
pkgdesc="The Massively Parallel Quantum Chemistry Program computes properties of atoms and molecules using the time independent Schrödinger equation. Version with shared libraries"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://www.mpqc.org/"
|
||||
license=('LGPL')
|
||||
depends=('lapack' 'gcc-fortran' 'gcc-libs' 'tk' 'perl')
|
||||
conflicts=('mpqc')
|
||||
provides=('mpqc')
|
||||
replaces=('mpqc')
|
||||
source=(http://sourceforge.net/projects/mpqc/files/mpqc/${pkgver}/${_pkgname}-${pkgver}.tar.bz2)
|
||||
md5sums=('2f9b4f7487387730d78066a53764f848')
|
||||
|
||||
build()
|
||||
{
|
||||
cd ${srcdir}/${_pkgname}-${pkgver}
|
||||
./configure --prefix=/usr --enable-shared
|
||||
make -j3
|
||||
}
|
||||
|
||||
package()
|
||||
{
|
||||
cd ${srcdir}/${_pkgname}-${pkgver}
|
||||
make installroot=${pkgdir} install
|
||||
make installroot=${pkgdir} install_devel
|
||||
}
|
Reference in New Issue
Block a user