aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/imapfilter
diff options
context:
space:
mode:
authorAlejandro Enedino Hernandez Samaniego <alejandro@enedino.org>2020-05-04 22:43:15 -0700
committerKhem Raj <raj.khem@gmail.com>2020-05-05 16:23:36 -0700
commit045fb49a1e9a9029e089f33cc98debd4b1919b7a (patch)
tree8553a043db21d9813efad0d3ae8946f7c0007cce /meta-oe/recipes-support/imapfilter
parent535385f3feaffa07ea23b3820cb1b916bef15f85 (diff)
downloadmeta-openembedded-contrib-045fb49a1e9a9029e089f33cc98debd4b1919b7a.tar.gz
imapfilter: introduce imapfilter recipe providing a mailbox filter through the IMAP protocol
Signed-off-by: Alejandro Hernandez Samaniego <alejandro@enedino.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/imapfilter')
-rw-r--r--meta-oe/recipes-support/imapfilter/imapfilter_2.6.16.bb17
1 files changed, 17 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/imapfilter/imapfilter_2.6.16.bb b/meta-oe/recipes-support/imapfilter/imapfilter_2.6.16.bb
new file mode 100644
index 0000000000..7d4e12dfb8
--- /dev/null
+++ b/meta-oe/recipes-support/imapfilter/imapfilter_2.6.16.bb
@@ -0,0 +1,17 @@
+SUMMARY = "IMAPFilter is a mail filtering utility that processes mailboxes based on IMAP queries"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=ccca8573ead8e965c130b6b2946a36ab"
+
+SRC_URI = "https://codeload.github.com/lefcha/${BPN}/tar.gz/v${PV};downloadfilename=v${PV}.tar.gz"
+SRC_URI[sha256sum] = "90af9bc9875e03fb5a09a3233287b74dd817867cb18ec9ff52fead615755563e"
+
+DEPENDS= "openssl lua libpcre"
+
+EXTRA_OEMAKE_append = " PREFIX=${prefix}"
+
+do_install(){
+ oe_runmake DESTDIR=${D} install
+
+ # No need for manuals at this point, MANDIR is hardcoded to depend on prefix
+ rm -rf ${D}${prefix}/man
+}