diff options
author | Philipp A | 2020-10-21 16:45:22 +0200 |
---|---|---|
committer | Philipp A | 2020-10-21 16:45:22 +0200 |
commit | 9856d9a52b10f78daafef589f8686b1ac33090aa (patch) | |
tree | 4c3c69e4dc8f0f2c2ba7f56307e701d07ab11779 | |
parent | fc2e7956abf57635cd228df8721dd2e8a957c5e6 (diff) | |
download | aur-9856d9a52b10f78daafef589f8686b1ac33090aa.tar.gz |
v2.2.1
-rw-r--r-- | .SRCINFO | 9 | ||||
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | PKGBUILD | 9 |
3 files changed, 12 insertions, 9 deletions
@@ -1,12 +1,13 @@ pkgbase = hisat2 pkgdesc = A fast and sensitive alignment program for mapping next-generation sequencing reads against genomes - pkgver = 2.2.0 + pkgver = 2.2.1 pkgrel = 1 url = https://ccb.jhu.edu/software/hisat2 arch = x86_64 - license = GPLv3 - source = hisat2-2.2.0-source.zip::https://cloud.biohpc.swmed.edu/index.php/s/hisat2-220-source/download - sha256sums = 0dd55168853b82c1b085f79ed793dd029db163773f52272d7eb51b3b5e4a4cdd + license = GPL3 + optdepends = python: To use the wrapper scripts instead of -l and -s variants + source = hisat2-2.2.1-source.zip::https://cloud.biohpc.swmed.edu/index.php/s/fE9QCsX3NH4QwBi/download + sha256sums = 48e933330d4d8470d2b3dfe7ec3918f2e98a75f7381891e23b7df1fb4f135eb1 pkgname = hisat2 diff --git a/.gitignore b/.gitignore index 1d41ea0663a1..fcc7354677c7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ /pkg/ /src/ -/*.pkg.tar.xz +/*.pkg.tar.* /*.zip +/*.log @@ -1,12 +1,13 @@ pkgname=hisat2 -pkgver=2.2.0 +pkgver=2.2.1 pkgrel=1 pkgdesc='A fast and sensitive alignment program for mapping next-generation sequencing reads against genomes' url="https://ccb.jhu.edu/software/$pkgname" -license=(GPLv3) +license=(GPL3) arch=(x86_64) -source=("$pkgname-$pkgver-source.zip::https://cloud.biohpc.swmed.edu/index.php/s/$pkgname-${pkgver//./}-source/download") -sha256sums=('0dd55168853b82c1b085f79ed793dd029db163773f52272d7eb51b3b5e4a4cdd') +optdepends=('python: To use the wrapper scripts instead of -l and -s variants') +source=("$pkgname-$pkgver-source.zip::https://cloud.biohpc.swmed.edu/index.php/s/fE9QCsX3NH4QwBi/download") +sha256sums=('48e933330d4d8470d2b3dfe7ec3918f2e98a75f7381891e23b7df1fb4f135eb1') build() { cd "$srcdir/$pkgname-$pkgver" |