summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authoryardenac2013-04-05 12:39:02 -0700
committeryar2015-06-15 19:32:57 -0700
commit125b88ca94d0e389ae3060c369d708dce6bb654c (patch)
treeb9badc958fad7bb803f0a3c18e48b61c6271fa54
downloadaur-125b88ca94d0e389ae3060c369d708dce6bb654c.tar.gz
package for Arch
-rw-r--r--.SRCINFO13
-rw-r--r--PKGBUILD14
2 files changed, 27 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..1e1e717ba816
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = eml2mbox
+ pkgdesc = Converts a bunch of eml files into one mbox file
+ pkgver = 0.08
+ pkgrel = 1
+ url = https://github.com/yardenac/eml2mbox
+ arch = any
+ license = LGPL2.1
+ depends = ruby
+ source = https://github.com/yardenac/eml2mbox/blob/master/eml2mbox.rb
+ md5sums = b1b532cdef73e3c52ef4b861a6bcbfe5
+
+pkgname = eml2mbox
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..8ffe38166c97
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,14 @@
+pkgname=eml2mbox
+pkgver=0.08
+pkgrel=1
+pkgdesc="Converts a bunch of eml files into one mbox file"
+arch=('any')
+url="https://github.com/yardenac/eml2mbox"
+license=('LGPL2.1')
+depends=('ruby')
+source=('https://github.com/yardenac/eml2mbox/blob/master/eml2mbox.rb')
+md5sums=('b1b532cdef73e3c52ef4b861a6bcbfe5')
+
+package() {
+ install -Dm 755 eml2mbox.rb "${pkgdir}/usr/bin/eml2mbox"
+}