blob: 8d467cccc5065c1d59ab2c227cd1e79ad0af482c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Maintainer: lantw44 (at) gmail (dot) com
# http://codepad.org/XEk6PJYc
pkgname=yaehmop
pkgver=3.1.0b2
pkgrel=1
pkgdesc="Yet Another extended Huckel Molecular Orbital Package"
arch=('x86_64' 'i686')
url="http://yaehmop.sourceforge.net/"
license=('GPL')
depends=('gcc-fortran' 'readline' 'libx11' 'blas' 'lapack')
source=('http://downloads.sourceforge.net/project/yaehmop/yaehmop-beta/3.1.0b2/bind.3.1.0b2.tgz'
'http://downloads.sourceforge.net/project/yaehmop/yaehmop-beta/3.1.0b2/viewkel.3.1.0b.tgz'
'http://downloads.sourceforge.net/project/yaehmop/yaehmop-beta/3.1.0b2/dense_eval.3.1.0b.tgz'
'0001-Fix-build-problems.patch')
md5sums=('5a717a1f9c5dbe6cf36de15cb3c5b6ef'
'd629bface0f610f7a4a1b3d0305872ca'
'aec78fae520950777b7738cf42626d99'
'4290dcf6a1ddb040c38dbb54d8698c5b')
build() {
cd "${srcdir}/${pkgname}"
mv ../viewkel ./
mv ../dense_eval viewkel/
mkdir bin
rm -f tightbind/bind
rm -f tightbind/utils/fit_coop
rm -f tightbind/utils/fit_coop.o
rm -f tightbind/utils/fit_dos
rm -f tightbind/utils/fit_dos.o
rm -f tightbind/utils/genutil.o
patch -p1 < ../../0001-Fix-build-problems.patch
cd tightbind
make -f makefile.linux install
cd ../viewkel
make -f makefile.linux
make -f makefile.linux install
make liborbitals.a
make libsolids.a
make libgenutils.a
cd dense_eval
make
cp -p dense_eval ../../bin
}
package() {
mkdir -p "${pkgdir}/usr/share/${pkgname}/viewkel"
cp -rp "${srcdir}/${pkgname}/bin" "${pkgdir}/usr/"
install -m 644 "${srcdir}/${pkgname}/viewkel/new_atomic_parms.dat" \
"${pkgdir}/usr/share/${pkgname}/viewkel"
}
|