summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLev Levitsky2018-03-20 13:55:10 +0300
committerLev Levitsky2018-03-20 13:55:10 +0300
commitb0011faf3fe12e1073fd57c5557cb21d0d906b7d (patch)
treef69211a2b3fc02ad560c9fc21f6aaf13b57ba2bc
parenta272faab8e1b870554dd60533cb92ad1ec9bca7d (diff)
downloadaur-b0011faf3fe12e1073fd57c5557cb21d0d906b7d.tar.gz
Fixes
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD11
2 files changed, 8 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 2369abb50d6e..cb5c0d7368e5 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,12 @@
pkgbase = msamanda
pkgdesc = A scoring system to identify peptides out of tandem mass spectrometry data using a database of known proteins
pkgver = 2.0.0.10695
- pkgrel = 2
+ pkgrel = 3
url = http://ms.imp.ac.at/index.php?action=ms-amanda
arch = any
license = custom
depends = mono
- source = MSAmanda_2.0.0.10695.zip::http://ms.imp.ac.at/index.php?file=MSAmanda2.0_Standalone_2.0.0.10695.zip
+ source = http://ms.imp.ac.at/index.php?file=MSAmanda2.0_Standalone_2.0.0.10695.zip
source = msamanda
md5sums = 24b9fc6782f1a62933de90b04d7190d4
md5sums = a870877935f5aed33fd0a7ec73e5abca
diff --git a/PKGBUILD b/PKGBUILD
index 1f4c66608036..94400e96d80c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,20 +1,21 @@
# Maintainer: Lev Levitsky <levlev@mail.ru>
pkgname=msamanda
pkgver=2.0.0.10695
-pkgrel=2
+pkgrel=3
pkgdesc="A scoring system to identify peptides out of tandem mass spectrometry data using a database of known proteins"
arch=('any')
url="http://ms.imp.ac.at/index.php?action=ms-amanda"
license=('custom')
depends=('mono')
options=()
-source=("MSAmanda_${pkgver}.zip::http://ms.imp.ac.at/index.php?file=MSAmanda2.0_Standalone_${pkgver}.zip"
+source=("http://ms.imp.ac.at/index.php?file=MSAmanda2.0_Standalone_${pkgver}.zip"
"msamanda")
md5sums=('24b9fc6782f1a62933de90b04d7190d4'
'a870877935f5aed33fd0a7ec73e5abca')
package() {
- mkdir "$pkgdir/opt"
- cp -rt "$pkgdir/opt/" "$srcdir/MSAmanda"
- install -D "$srcdir/msamanda" "$pkgdir/usr/bin/msamanda"
+ mkdir -p "$pkgdir/opt/MSAmanda"
+ cp -rLt "$pkgdir/opt/MSAmanda" "$srcdir"/*
+ mkdir -p "$pkgdir/usr/bin"
+ cp -L msamanda "$pkgdir/usr/bin"
}