summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChocobo12020-09-01 14:58:01 +0800
committerChocobo12020-09-01 14:59:36 +0800
commitbd2fc5cbd2b1bce8a657873f26f704f8e3e164ef (patch)
tree95442981d82956aa088c6f293766bef142316ad5
downloadaur-bd2fc5cbd2b1bce8a657873f26f704f8e3e164ef.tar.gz
newpkg: minimap2-bin 2.17-1
-rw-r--r--.SRCINFO16
-rw-r--r--PKGBUILD22
2 files changed, 38 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..502fc4170b49
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,16 @@
+pkgbase = minimap2-bin
+ pkgdesc = Aligner for genomic and spliced nucleotide sequences
+ pkgver = 2.17
+ pkgrel = 1
+ url = https://lh3.github.io/minimap2/
+ arch = x86_64
+ license = MIT
+ depends = glibc
+ depends = zlib
+ provides = minimap2
+ conflicts = minimap2
+ source = https://github.com/lh3/minimap2/releases/download/v2.17/minimap2-2.17_x64-linux.tar.bz2
+ sha256sums = fe97310cf9abc165de2e17d41b68ee5a1003be3ff742179edef38fcf8a089a47
+
+pkgname = minimap2-bin
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..2c9987fc5192
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,22 @@
+# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
+
+pkgname=minimap2-bin
+pkgver=2.17
+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')
+conflicts=('minimap2')
+source=("https://github.com/lh3/minimap2/releases/download/v$pkgver/minimap2-${pkgver}_x64-linux.tar.bz2")
+sha256sums=('fe97310cf9abc165de2e17d41b68ee5a1003be3ff742179edef38fcf8a089a47')
+
+
+package() {
+ cd "minimap2-${pkgver}_x64-linux"
+
+ install -Dm755 "minimap2" -t "$pkgdir/usr/bin"
+ install -Dm644 "LICENSE.txt" -t "$pkgdir/usr/share/licenses/minimap2"
+}