diff options
author | Alejandro Enedino Hernandez Samaniego <alejandro@enedino.org> | 2020-05-04 22:43:15 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-05-05 16:23:36 -0700 |
commit | 045fb49a1e9a9029e089f33cc98debd4b1919b7a (patch) | |
tree | 8553a043db21d9813efad0d3ae8946f7c0007cce /meta-oe | |
parent | 535385f3feaffa07ea23b3820cb1b916bef15f85 (diff) | |
download | meta-openembedded-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')
-rw-r--r-- | meta-oe/recipes-support/imapfilter/imapfilter_2.6.16.bb | 17 |
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 000000000..7d4e12dfb --- /dev/null +++ b/meta-oe/recipes-support/imapfilter/imapfilter_2.6.16.bb | |||
@@ -0,0 +1,17 @@ | |||
1 | SUMMARY = "IMAPFilter is a mail filtering utility that processes mailboxes based on IMAP queries" | ||
2 | LICENSE = "MIT" | ||
3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=ccca8573ead8e965c130b6b2946a36ab" | ||
4 | |||
5 | SRC_URI = "https://codeload.github.com/lefcha/${BPN}/tar.gz/v${PV};downloadfilename=v${PV}.tar.gz" | ||
6 | SRC_URI[sha256sum] = "90af9bc9875e03fb5a09a3233287b74dd817867cb18ec9ff52fead615755563e" | ||
7 | |||
8 | DEPENDS= "openssl lua libpcre" | ||
9 | |||
10 | EXTRA_OEMAKE_append = " PREFIX=${prefix}" | ||
11 | |||
12 | do_install(){ | ||
13 | oe_runmake DESTDIR=${D} install | ||
14 | |||
15 | # No need for manuals at this point, MANDIR is hardcoded to depend on prefix | ||
16 | rm -rf ${D}${prefix}/man | ||
17 | } | ||