summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorRonny Lorenz2015-09-19 14:43:09 +0200
committerRonny Lorenz2015-09-19 14:43:09 +0200
commitdfb4979a653447cc65b27bc1882a2a4c1dee787e (patch)
tree562eea85cf6a52ffeb244232dde9eb3da89d46a9
parent25fc387c113d9d7d4f105526629fe43d4dda3e1b (diff)
downloadaur-dfb4979a653447cc65b27bc1882a2a4c1dee787e.tar.gz
Added README file
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD7
2 files changed, 9 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 697c810f22e9..a8556eb9bf76 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,7 @@
pkgbase = snoreport
+ pkgdesc = Computational identification of snoRNAs with unknown targets
pkgver = 1.3
- pkgrel = 1
+ pkgrel = 2
url = http://www.bioinf.uni-leipzig.de/Software/snoReport/
arch = x86_64
arch = i686
@@ -8,8 +9,10 @@ pkgbase = snoreport
makedepends = autoconf
depends = viennarna
source = http://www.bioinf.uni-leipzig.de/Software/snoReport/SnoReport-1.3.tar.gz
+ source = http://www.bioinf.uni-leipzig.de/Software/snoReport/README_snoReport
source = buildfix.patch
md5sums = 299d6cd2344ff376eeb8541daeacced0
+ md5sums = f6dd0df226ec7510f9d14dfd4573e0d1
md5sums = 592a51a1c0261b4df627635831056513
pkgname = snoreport
diff --git a/PKGBUILD b/PKGBUILD
index f1ff3e9509eb..f073ff477b17 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,8 +2,8 @@
pkgname=snoreport
pkgver=1.3
-pkgrel=1
-pkgdesc=""
+pkgrel=2
+pkgdesc="Computational identification of snoRNAs with unknown targets"
arch=('x86_64' 'i686')
license=('Custom')
url="http://www.bioinf.uni-leipzig.de/Software/snoReport/"
@@ -12,8 +12,10 @@ optdepends=()
makedepends=('autoconf')
provides=()
source=(http://www.bioinf.uni-leipzig.de/Software/snoReport/SnoReport-${pkgver}.tar.gz
+ http://www.bioinf.uni-leipzig.de/Software/snoReport/README_snoReport
buildfix.patch)
md5sums=( '299d6cd2344ff376eeb8541daeacced0'
+ 'f6dd0df226ec7510f9d14dfd4573e0d1'
'592a51a1c0261b4df627635831056513')
prepare() {
@@ -33,5 +35,6 @@ package() {
cd "${srcdir}/SnoReport-${pkgver}"
make DESTDIR="${pkgdir}" install || return 1
mv "${pkgdir}/usr/bin/summarizeOutput.pl" "${pkgdir}/usr/share/snoReport/"
+ install -Dm644 ../README_snoReport "${pkgdir}/usr/share/doc/snoReport/README"
}