summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9aca7a54dd7db642b22bd361fe34bfd6932a70ba (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
26
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
pkgname=rgbepp
_pkgname=RGBEPP
pkgver=0.0.2
pkgrel=1
pkgdesc="Reference Genome based Exon Phylogeny Pipeline"
arch=('x86_64')
url="https://github.com/starsareintherose/$_pkgname"
license=('GPL-2.0-only')
depends=('fastp' 'diamond' 'spades' 'java-runtime' 'macse' 'parallel' 'findutils' 'bash')
makedepends=('gcc' 'cmake' 'make')
source=(https://github.com/starsareintherose/${_pkgname}/archive/refs/tags/${pkgver}.tar.gz)
sha256sums=('eb493da89ccba95d43b1f99e36fc793b787340fc203fc99a7eb3111bd2de2d65')
build() {
  cd "$_pkgname-$pkgver"
  mkdir -p build && cd build
  cmake ..
  make
}


package(){
  cd "$_pkgname-$pkgver"
  cd build
  make DESTDIR=$pkgdir install
}