summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authormschubert2023-05-01 11:04:58 +0200
committermschubert2023-05-01 11:04:58 +0200
commit6295afa0ac0c687715af0d50b14d561e5fc28cdb (patch)
tree497123b46a6b7f0fea268037373cd99748853b02
parentcfea1df5eb0e42023f251e3f6e8db724e70cc487 (diff)
downloadaur-6295afa0ac0c687715af0d50b14d561e5fc28cdb.tar.gz
version bump 2.14.0
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD11
2 files changed, 8 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index fc81ebb0291d..31c2ea0beec3 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = blast+-bin
pkgdesc = New suite of BLAST tools that utilizes the NCBI C++ Toolkit
- pkgver = 2.13.0
+ pkgver = 2.14.0
pkgrel = 1
url = https://blast.ncbi.nlm.nih.gov/Blast.cgi?CMD=Web&PAGE_TYPE=BlastHome
arch = x86_64
@@ -10,7 +10,7 @@ pkgbase = blast+-bin
depends = libidn
provides = blast+
conflicts = blast+
- source = https://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.13.0/ncbi-blast-2.13.0+-x64-linux.tar.gz
- sha256sums = 40f2b739d4fef86a0d235347c84a6edbf841da1a8760f43fbcd5c50150b05447
+ source = https://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.14.0/ncbi-blast-2.14.0+-x64-linux.tar.gz
+ sha256sums = 6f2402870a5686fed7ab5178e3609027b7591f2b7e5c63577663b13cfb94368e
pkgname = blast+-bin
diff --git a/PKGBUILD b/PKGBUILD
index a35a5010ff33..adc61229ea1c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
# Contributor: yescalona <yescalona[at]ug[dot]uchile[dot]cl>
# Contributor: soeren <nonick[at]posteo[dot]de>
pkgname=blast+-bin
-pkgver=2.13.0
+pkgver=2.14.0
pkgrel=1
pkgdesc="New suite of BLAST tools that utilizes the NCBI C++ Toolkit"
arch=('x86_64')
@@ -12,14 +12,13 @@ depends=('perl' 'zlib' 'libidn')
provides=('blast+')
conflicts=('blast+')
source=(https://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/$pkgver/ncbi-blast-$pkgver+-x64-linux.tar.gz)
-sha256sums=('40f2b739d4fef86a0d235347c84a6edbf841da1a8760f43fbcd5c50150b05447')
+sha256sums=('6f2402870a5686fed7ab5178e3609027b7591f2b7e5c63577663b13cfb94368e')
package() {
- install -d "$pkgdir"/usr/bin
- install -d "$pkgdir"/usr/share/doc/$pkgname
+ install -d "$pkgdir"/usr/{bin,share/doc/$pkgname}
cd "$srcdir"/ncbi-blast-$pkgver+
- install -Dm755 bin/* "$pkgdir"/usr/bin
- install -Dm644 doc/* "$pkgdir"/usr/share/doc/$pkgname
+ install -m755 bin/* "$pkgdir"/usr/bin
+ install -m644 doc/* "$pkgdir"/usr/share/doc/$pkgname
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/blast+-bin/LICENSE
}