summaryrefslogtreecommitdiffstats
path: root/recipes-security/ccs-tools/ccs-tools_1.8.4.bb
diff options
context:
space:
mode:
authorArmin Kuster <akuster808@gmail.com>2015-10-25 14:57:47 -0700
committerArmin Kuster <akuster808@gmail.com>2015-10-30 11:56:43 -0700
commite3e0178af61a6057ca9ecab03da5b8072040a9b4 (patch)
tree4a4f3a0d6fafafbb14c1e6be3886b4f1c82cba3c /recipes-security/ccs-tools/ccs-tools_1.8.4.bb
parentb0c1edfe23f9ed18884e506a6653a23e504705db (diff)
downloadmeta-security-e3e0178af61a6057ca9ecab03da5b8072040a9b4.tar.gz
ccs-tools: update to 1.8.4
change LIC_CHKSUM to COPYING.css where the license statement resides. Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'recipes-security/ccs-tools/ccs-tools_1.8.4.bb')
-rw-r--r--recipes-security/ccs-tools/ccs-tools_1.8.4.bb50
1 files changed, 50 insertions, 0 deletions
diff --git a/recipes-security/ccs-tools/ccs-tools_1.8.4.bb b/recipes-security/ccs-tools/ccs-tools_1.8.4.bb
new file mode 100644
index 0000000..189504a
--- /dev/null
+++ b/recipes-security/ccs-tools/ccs-tools_1.8.4.bb
@@ -0,0 +1,50 @@
1SUMMARY = "Tomoyo"
2DESCRIPTION = "TOMOYO Linux is a Mandatory Access Control (MAC) implementation for Linux that can be used to increase the security of a system, while also being useful purely as a system analysis tool. \nTo start via command line add: \nsecurity=tomoyo TOMOYO_trigger=/usr/lib/systemd/systemd \nTo initialize: \n/usr/lib/ccs/init_policy"
3
4SECTION = "security"
5LICENSE = "GPL-2.0"
6LIC_FILES_CHKSUM = "file://COPYING.ccs;md5=751419260aa954499f7abaabaa882bbe"
7
8DEPENDS = "ncurses"
9
10DS = "20150505"
11SRC_URI = "http://osdn.dl.sourceforge.jp/tomoyo/49693/${BPN}-${PV}-${DS}.tar.gz"
12
13SRC_URI[md5sum] = "eeee8eb96a7680bfa9c8f6de55502c44"
14SRC_URI[sha256sum] = "c358b80a2ea77a9dda79dc2a056dae3acaf3a72fcb8481cfb1cd1f16746324b4"
15
16S = "${WORKDIR}/${PN}"
17
18inherit distro_features_check
19
20do_make(){
21 oe_runmake USRLIBDIR=${libdir} all
22 cd ${S}/kernel_test
23 oe_runmake all
24}
25
26do_install(){
27 oe_runmake INSTALLDIR=${D} USRLIBDIR=${libdir} install
28}
29
30PACKAGE="${PN} ${PN}-dbg ${PN}-doc"
31
32FILES_${PN} = "\
33 ${sbindir}/* \
34 ${base_sbindir}/* \
35 ${libdir}/* \
36"
37
38FILES_${PN}-doc = "\
39 ${mandir}/man8/* \
40"
41
42FILES_${PN}-dbg = "\
43 ${base_sbindir}/.debug/* \
44 ${sbindir}/.debug/* \
45 ${libdir}/.debug/* \
46 ${libdir}/ccs/.debug/* \
47 /usr/src/debug/* \
48"
49
50REQUIRED_DISTRO_FEATURES ?=" tomoyo"