diff options
Diffstat (limited to 'abs/extra/community/foldingathome/PKGBUILD')
-rw-r--r-- | abs/extra/community/foldingathome/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/abs/extra/community/foldingathome/PKGBUILD b/abs/extra/community/foldingathome/PKGBUILD new file mode 100644 index 0000000..bb93407 --- /dev/null +++ b/abs/extra/community/foldingathome/PKGBUILD @@ -0,0 +1,26 @@ +# Contributor: Jason Taylor <jftaylor21@gmail.com> +# Contributor: seratne +# Contributor: Nick B <Shirakawasuna at gmail _dot_com> + +pkgname=foldingathome +pkgver=6.02 +pkgrel=6 +pkgdesc="Folding@Home is a distributed computing project which studies protein folding, misfolding, aggregation, and related diseases." +arch=('i686') +url="http://folding.stanford.edu/" +license=('custom') +depends=('bash') +backup=('etc/conf.d/foldingathome') +install=foldingathome.install +source=(http://www.stanford.edu/group/pandegroup/folding/release/FAH$pkgver-Linux.tgz + run) +md5sums=('112b3d66909050f1bb990993a1464cb9' + '61eb4617e7363d586a05dde980ad1c14') + +build() { + cd $startdir/src/ + + # At this stage, the mpiexec is not included because it requires x86_64. + install -D -c -m755 fah6 $startdir/pkg/usr/bin/fah6 || return 1 + install -D -m755 run $startdir/pkg/etc/sv/fah/run +} |