diff options
author | Armin Kuster <akuster808@gmail.com> | 2017-10-26 13:59:07 -0700 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2018-03-01 16:10:36 -0800 |
commit | 696e3927895d116ffd91ab1709ca69eb7c40fd6b (patch) | |
tree | 61729ce78ba173c26830426a3631806647dcbcb3 /meta-oe/recipes-security | |
parent | 37a43408743d2445d548754967995df9ea1b0b14 (diff) | |
download | meta-openembedded-696e3927895d116ffd91ab1709ca69eb7c40fd6b.tar.gz |
tomoyo-tools: move to recipes-secuity
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-security')
-rw-r--r-- | meta-oe/recipes-security/tomoyo-tools/tomoyo-tools_2.5.0.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-oe/recipes-security/tomoyo-tools/tomoyo-tools_2.5.0.bb b/meta-oe/recipes-security/tomoyo-tools/tomoyo-tools_2.5.0.bb new file mode 100644 index 0000000000..f362775999 --- /dev/null +++ b/meta-oe/recipes-security/tomoyo-tools/tomoyo-tools_2.5.0.bb | |||
@@ -0,0 +1,30 @@ | |||
1 | SUMMARY = "TOMOYO Linux tools" | ||
2 | DESCRIPTION = "TOMOYO Linux is a Mandatory Access Control (MAC) implementation \ | ||
3 | for Linux that can be used to increase the security of a system, while also \ | ||
4 | being useful purely as a system analysis tool." | ||
5 | HOMEPAGE = "http://tomoyo.sourceforge.jp/" | ||
6 | SECTION = "System Environment/Kernel" | ||
7 | |||
8 | SRC_URI = "http://jaist.dl.sourceforge.jp/tomoyo/53357/${BP}-20170102.tar.gz" | ||
9 | SRC_URI[md5sum] = "888804d58742452fe213a68f7eadd0ad" | ||
10 | SRC_URI[sha256sum] = "00fedfac5e514321250bbe69eaccc732c8a8158596f77a785c2e3ae9f9968283" | ||
11 | |||
12 | S = "${WORKDIR}/${BPN}" | ||
13 | |||
14 | LICENSE = "GPLv2" | ||
15 | LIC_FILES_CHKSUM = "file://COPYING.tomoyo;md5=751419260aa954499f7abaabaa882bbe" | ||
16 | |||
17 | FILES_${PN} += "${libdir}/tomoyo" | ||
18 | FILES_${PN}-dbg += "${libdir}/tomoyo/.debug" | ||
19 | |||
20 | DEPENDS = "linux-libc-headers ncurses" | ||
21 | |||
22 | EXTRA_OEMAKE = "-e USRLIBDIR=${libdir}" | ||
23 | |||
24 | do_compile () { | ||
25 | oe_runmake 'CC=${CC}' | ||
26 | } | ||
27 | |||
28 | do_install() { | ||
29 | oe_runmake install INSTALLDIR=${D} | ||
30 | } | ||