summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c78b39b4b61e496328f9093c8bf0714096417423 (plain)
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
pkgname=mpi-bucky
pkgver=1.4.4
pkgrel=2
pkgdesc="Bayesian Untangling of Concordance Knots https://doi.org/10.1093/bioinformatics/btq539"
arch=('x86_64')
conflicts=('bucky')
url="https://github.com/tkchafin/mpi-bucky"
license=('GPL')
depends=('gcc-libs' 'boost-libs' 'openmpi')
makedepends=('clang' 'boost' 'openmpi' 'git')
source=("git+$url.git")
sha256sums=('SKIP')

build() {
  cd "$srcdir/$pkgname/src"
  make
}

package() {
  cd "$srcdir/$pkgname/src"
for bin in bucky mbsum
do
  install -Dm 755 $bin $pkgdir/usr/bin/$bin
done
}