summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrey Christoforo2016-01-20 11:42:54 +0000
committerGrey Christoforo2016-01-20 11:42:54 +0000
commite2e5ced9c4eeaa23a9e2a1dff99163b27a32ea2d (patch)
tree2bb6606457b05b424ad4de3b5050accb43a9ef5c
downloadaur-e2e5ced9c4eeaa23a9e2a1dff99163b27a32ea2d.tar.gz
initial commit
-rw-r--r--.SRCINFO16
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD28
3 files changed, 48 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..dce1e1e3bf83
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,16 @@
+# Generated by mksrcinfo v8
+# Wed Jan 20 11:42:48 UTC 2016
+pkgbase = weblogo
+ pkgdesc = A web based application designed to make the generation of sequence logos as easy and painless as possible
+ pkgver = 3.4.1
+ pkgrel = 1
+ url = http://weblogo.berkeley.edu//
+ arch = i686
+ arch = x86_64
+ license = custom (MIT)
+ depends = ghostscript
+ source = https://github.com/WebLogo/weblogo/archive/3.4.1.tar.gz
+ md5sums = 7201942b419ca8fbb9395a11b0e34f9c
+
+pkgname = weblogo
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..d778e6b9e155
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+*.tar.xz
+*.tar.gz
+pkg/
+src/
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..b981e9c004a2
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,28 @@
+# Maintainer: Grey Christoforo <first name [at] last name [dot] net>
+
+pkgname=weblogo
+pkgver=3.4.1
+pkgrel=1
+pkgdesc="A web based application designed to make the generation of sequence logos as easy and painless as possible"
+url="http://weblogo.berkeley.edu//"
+arch=('i686' 'x86_64')
+license=('custom (MIT)')
+depends=('ghostscript')
+source=("https://github.com/WebLogo/${pkgname}/archive/${pkgver}.tar.gz")
+md5sums=('7201942b419ca8fbb9395a11b0e34f9c')
+#options=(!strip docs libtool emptydirs !zipman staticlibs !upx)
+
+prepare(){
+msg "preparing"
+}
+
+build(){
+msg "building"
+}
+
+package() {
+msg "packaging"
+}
+
+# vim:set ts=2 sw=2 et:#
+