diff options
| author | Armin Kuster <akuster808@gmail.com> | 2015-10-25 14:57:47 -0700 |
|---|---|---|
| committer | Armin Kuster <akuster808@gmail.com> | 2015-10-30 11:56:43 -0700 |
| commit | e3e0178af61a6057ca9ecab03da5b8072040a9b4 (patch) | |
| tree | 4a4f3a0d6fafafbb14c1e6be3886b4f1c82cba3c /recipes-security/ccs-tools/ccs-tools_1.8.4.bb | |
| parent | b0c1edfe23f9ed18884e506a6653a23e504705db (diff) | |
| download | meta-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.bb | 50 |
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 @@ | |||
| 1 | SUMMARY = "Tomoyo" | ||
| 2 | DESCRIPTION = "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 | |||
| 4 | SECTION = "security" | ||
| 5 | LICENSE = "GPL-2.0" | ||
| 6 | LIC_FILES_CHKSUM = "file://COPYING.ccs;md5=751419260aa954499f7abaabaa882bbe" | ||
| 7 | |||
| 8 | DEPENDS = "ncurses" | ||
| 9 | |||
| 10 | DS = "20150505" | ||
| 11 | SRC_URI = "http://osdn.dl.sourceforge.jp/tomoyo/49693/${BPN}-${PV}-${DS}.tar.gz" | ||
| 12 | |||
| 13 | SRC_URI[md5sum] = "eeee8eb96a7680bfa9c8f6de55502c44" | ||
| 14 | SRC_URI[sha256sum] = "c358b80a2ea77a9dda79dc2a056dae3acaf3a72fcb8481cfb1cd1f16746324b4" | ||
| 15 | |||
| 16 | S = "${WORKDIR}/${PN}" | ||
| 17 | |||
| 18 | inherit distro_features_check | ||
| 19 | |||
| 20 | do_make(){ | ||
| 21 | oe_runmake USRLIBDIR=${libdir} all | ||
| 22 | cd ${S}/kernel_test | ||
| 23 | oe_runmake all | ||
| 24 | } | ||
| 25 | |||
| 26 | do_install(){ | ||
| 27 | oe_runmake INSTALLDIR=${D} USRLIBDIR=${libdir} install | ||
| 28 | } | ||
| 29 | |||
| 30 | PACKAGE="${PN} ${PN}-dbg ${PN}-doc" | ||
| 31 | |||
| 32 | FILES_${PN} = "\ | ||
| 33 | ${sbindir}/* \ | ||
| 34 | ${base_sbindir}/* \ | ||
| 35 | ${libdir}/* \ | ||
| 36 | " | ||
| 37 | |||
| 38 | FILES_${PN}-doc = "\ | ||
| 39 | ${mandir}/man8/* \ | ||
| 40 | " | ||
| 41 | |||
| 42 | FILES_${PN}-dbg = "\ | ||
| 43 | ${base_sbindir}/.debug/* \ | ||
| 44 | ${sbindir}/.debug/* \ | ||
| 45 | ${libdir}/.debug/* \ | ||
| 46 | ${libdir}/ccs/.debug/* \ | ||
| 47 | /usr/src/debug/* \ | ||
| 48 | " | ||
| 49 | |||
| 50 | REQUIRED_DISTRO_FEATURES ?=" tomoyo" | ||
