summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO9
-rw-r--r--PKGBUILD10
2 files changed, 10 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 502fc4170b49..31d0d009785d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,16 +1,15 @@
pkgbase = minimap2-bin
pkgdesc = Aligner for genomic and spliced nucleotide sequences
- pkgver = 2.17
+ pkgver = 2.28
pkgrel = 1
url = https://lh3.github.io/minimap2/
arch = x86_64
license = MIT
depends = glibc
depends = zlib
- provides = minimap2
+ provides = minimap2=2.28
conflicts = minimap2
- source = https://github.com/lh3/minimap2/releases/download/v2.17/minimap2-2.17_x64-linux.tar.bz2
- sha256sums = fe97310cf9abc165de2e17d41b68ee5a1003be3ff742179edef38fcf8a089a47
+ source_x86_64 = https://github.com/lh3/minimap2/releases/download/v2.28/minimap2-2.28_x64-linux.tar.bz2
+ sha256sums_x86_64 = 51f2cf0e486d0f9f88ace1aa58fdc56571382a676ea0889ae607301c60693377
pkgname = minimap2-bin
-
diff --git a/PKGBUILD b/PKGBUILD
index 2c9987fc5192..9b961315877e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,22 +1,24 @@
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=minimap2-bin
-pkgver=2.17
+pkgver=2.28
pkgrel=1
pkgdesc="Aligner for genomic and spliced nucleotide sequences"
arch=('x86_64')
url="https://lh3.github.io/minimap2/"
license=('MIT')
depends=('glibc' 'zlib')
-provides=('minimap2')
+provides=("minimap2=$pkgver")
conflicts=('minimap2')
-source=("https://github.com/lh3/minimap2/releases/download/v$pkgver/minimap2-${pkgver}_x64-linux.tar.bz2")
-sha256sums=('fe97310cf9abc165de2e17d41b68ee5a1003be3ff742179edef38fcf8a089a47')
+source_x86_64=("https://github.com/lh3/minimap2/releases/download/v$pkgver/minimap2-${pkgver}_x64-linux.tar.bz2")
+sha256sums_x86_64=('51f2cf0e486d0f9f88ace1aa58fdc56571382a676ea0889ae607301c60693377')
package() {
cd "minimap2-${pkgver}_x64-linux"
install -Dm755 "minimap2" -t "$pkgdir/usr/bin"
+ install -Dm644 {cookbook.md,README.md} -t "$pkgdir/usr/share/doc/minimap2"
+ install -Dm644 "minimap2.1" -t "$pkgdir/usr/share/man/man1"
install -Dm644 "LICENSE.txt" -t "$pkgdir/usr/share/licenses/minimap2"
}