# Maintainer: Dan Maftei pkgname="molden" pkgver=6.1 pkgrel=1 pkgdesc="A program for molecular and electronic structure visualization" arch=('i686' 'x86_64') url="http://www.cmbi.ru.nl/molden/" license=('custom') groups=() depends=('mesa' 'glu') makedepends=( 'vi' 'gcc-fortran' 'xproto' 'libx11' 'mesa' 'glu' ) optdepends=( 'openbabel: to create 2D images of the molecules in a .sdf file' 'wget: to fetch PDB from rcsb.org' ) provides=('molden') conflicts=() replaces=() backup=() options=() install= changelog= source=( "ftp://ftp.cmbi.umcn.nl/pub/molgraph/molden/$pkgname$pkgver.tar.gz" ) noextract=() md5sums=('7bc693baddd615f554a08f452c5282dd') build() { dir=`find . -name "molden*" -type d -exec echo {} \;` cd "$dir" # Patch Makefile for surf utility to reflect the # replacement of missing makedepend sed -i 's/@.*makedepend.*$/@ \$(CC) \$(INCLUDE) -M \$(SRCS) \> makedep/' surf/Makefile make } package() { dir=`find . -name "molden*" -type d -exec echo {} \;` cd "$dir" install -t "$pkgdir/usr/bin/" -Dm755 molden gmolden install -t "$pkgdir/usr/lib/$pkgname/" -Dm755 ambfor/ambfor ambfor/ambmd surf/surf install -t "$pkgdir/usr/share/doc/$pkgname" -Dm755 doc/figures.ps.Z doc/manual.ps.Z doc/manual.txt.Z install -t "$pkgdir/usr/share/licenses/$pkgname/" -Dm755 CopyRight COMMERCIAL_LICENSE REGISTER }