summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorBioArchLinuxBot2023-08-06 12:10:41 +0000
committerBioArchLinuxBot2023-08-06 12:10:41 +0000
commitadb976e34435cb0a2c606f06da5d8082fdad94f8 (patch)
tree4ff7ed6df0c83af65f69a208d00eab03c8b3f7ea
parent436d666c9dcb365c24e945cd2ab09d1c0fa14b3e (diff)
downloadaur-adb976e34435cb0a2c606f06da5d8082fdad94f8.tar.gz
[lilac] updated to 3.0.6-3
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 4 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e16aa5ee6263..1e5402683f09 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = sra-tools
pkgdesc = A collection of tools and libraries for using data in the INSDC Sequence Read Archives
pkgver = 3.0.6
- pkgrel = 1
+ pkgrel = 3
url = https://github.com/ncbi/sra-tools
arch = x86_64
license = custom: Public Domain
diff --git a/PKGBUILD b/PKGBUILD
index ee2ce01f1509..21334363d6f9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,7 +7,7 @@
pkgname=sra-tools
_dep=ncbi-vdb
pkgver=3.0.6
-pkgrel=1
+pkgrel=3
pkgdesc='A collection of tools and libraries for using data in the INSDC Sequence Read Archives'
url="https://github.com/ncbi/sra-tools"
source=("$pkgname-$pkgver.tar.gz::https://github.com/ncbi/sra-tools/archive/refs/tags/$pkgver.tar.gz"
@@ -73,9 +73,9 @@ package(){
# Fix filenames: remove $pkgever suffix from end of binaries
for bin in "$pkgdir"/usr/bin/*
do [ -f "$bin" ] || continue
- mv -n "$bin" "${bin//.${pkgver}/}"
+ mv --update=none "$bin" "${bin//.${pkgver}/}"
done
# Fix filenames: remove -orig suffix from end of binaries
- for file in "$pkgdir"/usr/bin/*-orig; do mv "$file" "${file%-orig}"; done
+ for file in "$pkgdir"/usr/bin/*-orig; do mv --update=none "$file" "${file%-orig}"; done
}