summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAllen2017-03-17 22:51:51 +0800
committerAllen2017-03-17 22:51:51 +0800
commitcfce2e307700cc8b363ab632da61922e0a28d4e3 (patch)
tree7ee102e002483ebe5a0b0befcab946026d5278b8
downloadaur-mdscan.tar.gz
Init commit
-rw-r--r--.SRCINFO13
-rw-r--r--PKGBUILD16
2 files changed, 29 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..9a599581a4a4
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = mdscan
+ pkgdesc = A DNA seqence motif finding programs
+ pkgver = 2004
+ pkgrel = 3
+ url = http://motif.stanford.edu/distributions/mdscan/
+ arch = i686
+ arch = x86_64
+ license = custom
+ source = http://motif.stanford.edu/distributions/mdscan/MDscan.2004.zip
+ md5sums = 7326a39c9908a17595a2e02a4af00770
+
+pkgname = mdscan
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..4baab1681971
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,16 @@
+# Maintainer: allencch <allencch at hotmail dot com>
+pkgname=mdscan
+pkgver=2004
+pkgrel=3
+pkgdesc="A DNA seqence motif finding programs"
+arch=('i686' 'x86_64')
+url="http://motif.stanford.edu/distributions/mdscan/"
+license=('custom')
+depends=()
+source=("http://motif.stanford.edu/distributions/mdscan/MDscan.${pkgver}.zip")
+md5sums=('7326a39c9908a17595a2e02a4af00770')
+
+package() {
+ mkdir -p "${pkgdir}/usr/bin"
+ install -m755 MDscan.linux "${pkgdir}/usr/bin/MDscan"
+}