diff options
author | José Bollo <jose.bollo@iot.bzh> | 2018-01-24 11:38:43 +0100 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2018-02-13 11:02:00 +0100 |
commit | f70d712e4f505f5c5b50ae17f4f023d20a667568 (patch) | |
tree | 57b0aaa702651012e1adfc07f9b6b6c580506f66 /meta-security/recipes-test/app-runas/app-runas.bb | |
parent | 3f962c7d202055777dd0238f12dbcf70f09ac07d (diff) |
Integrate parts of meta-intel-iot-security
Adds the recipes of the sub layers
- meta-security-framework
- meta-security-smack
Change-Id: I618608008a3b3d1d34adb6e38048110f13ac0643
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'meta-security/recipes-test/app-runas/app-runas.bb')
-rw-r--r-- | meta-security/recipes-test/app-runas/app-runas.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meta-security/recipes-test/app-runas/app-runas.bb b/meta-security/recipes-test/app-runas/app-runas.bb new file mode 100644 index 000000000..95725c2e7 --- /dev/null +++ b/meta-security/recipes-test/app-runas/app-runas.bb @@ -0,0 +1,17 @@ +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://app-runas.cpp;beginline=3;endline=19;md5=1ca447189bb2c54039033d50d8982d92" +SRC_URI = "file://app-runas.cpp" +DEPENDS = "security-manager" +S = "${WORKDIR}" + +do_compile () { + ${CXX} ${CXXFLAGS} ${S}/app-runas.cpp `pkg-config --cflags --libs security-manager` -o app-runas +} + +do_install () { + install -D app-runas ${D}/${bindir}/app-runas + chmod u+s ${D}/${bindir}/app-runas +} + +inherit deploy-files +DEPLOY_FILES_FROM[target] = "app-runas" |