-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
platform: added support for apparmor and signed kernel
- Loading branch information
1 parent
f089ee0
commit 638b48f
Showing
6 changed files
with
336 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
id: apparmor | ||
version: 3.1.7 | ||
about: Mandatory Access Control (MAC) using Linux Security Module (LSM) | ||
|
||
script: |- | ||
( | ||
cd libraries/libapparmor | ||
./configure --prefix=%{prefix} --sbindir=%{bindir} --with-python | ||
make $MAKEFLAGS | ||
) | ||
for target in binutils parser profiles utils changehat/pam_apparmor changehat/mod_apparmor utils/vim ; do | ||
make -C $target | ||
done | ||
make -C libraries/libapparmor DESTDIR="%{install-root}" install | ||
make -C changehat/pam_apparmor DESTDIR="%{install-root}%{prefix}" install | ||
make -C changehat/mod_apparmor DESTDIR="%{install-root}" install | ||
make -C binutils DESTDIR="%{install-root}" SBINDIR="%{install-root}%{bindir}" USR_SBINDIR="%{install-root}%{bindir}" install | ||
make -C parser -j1 DESTDIR="%{install-root}" SBINDIR="%{install-root}%{bindir}" USR_SBINDIR="%{install-root}%{bindir}" APPARMOR_BIN_PREFIX="%{install-root}%{libdir}/apparmor" install install-systemd | ||
make -C profiles DESTDIR="%{install-root}" install | ||
make -C utils DESTDIR="%{install-root}" SBINDIR="%{install-root}%{bindir}" USR_SBINDIR="%{install-root}%{bindir}" BINDIR="%{install-root}%{bindir}" VIM_INSTALL_PATH="%{install-root}%{datadir}/vim/vimfiles/syntax" install | ||
depends: | ||
- components/audit.yml | ||
- components/bash.yml | ||
- components/libgcc.yml | ||
- components/pam.yml | ||
- components/python.yml | ||
- components/py/py-notify2.yml | ||
- components/py/py-psutil.yml | ||
|
||
build-depends: | ||
- components/apache.yml | ||
- components/py/py-setuptools.yml | ||
|
||
sources: | ||
- https://launchpad.net/apparmor/%{version:2}/%{version}/+download/apparmor-%{version}.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
id: py-notify2 | ||
version: 0.3.1 | ||
about: Python interface to DBus notifications | ||
|
||
depends: | ||
- components/python.yml | ||
- components/py/py-dbus.yml | ||
|
||
build-depends: | ||
- components/py/py-setuptools.yml | ||
|
||
sources: | ||
- https://files.pythonhosted.org/packages/source/n/notify2/notify2-%{version}.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.