diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2021-04-19 16:07:30 +0200 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2021-04-19 16:20:15 +0200 |
commit | 3938c00030d1b6e4074e55a4dd880bd44851f2dc (patch) | |
tree | 5975ef912a77f273919d6b09133c9ef3acaa309d /pcr/checkpolicy | |
parent | 6330364772571bf94ed137d23c3d5d8efc224372 (diff) | |
download | abslibre-3938c00030d1b6e4074e55a4dd880bd44851f2dc.tar.gz abslibre-3938c00030d1b6e4074e55a4dd880bd44851f2dc.tar.bz2 abslibre-3938c00030d1b6e4074e55a4dd880bd44851f2dc.zip |
pcr: Add selinux-python from Aur
This finally brings the 'audit2allow' command to Parabola.
That command is commonly used to work with selinux policies.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'pcr/checkpolicy')
-rw-r--r-- | pcr/checkpolicy/PKGBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/pcr/checkpolicy/PKGBUILD b/pcr/checkpolicy/PKGBUILD new file mode 100644 index 000000000..3137e55c2 --- /dev/null +++ b/pcr/checkpolicy/PKGBUILD @@ -0,0 +1,34 @@ +# Maintainer (AUR): Nicolas Iooss (nicolas <dot> iooss <at> m4x <dot> org) +# Contributor (AUR): Timothée Ravier <tim@siosm.fr> +# Contributor (AUR): Nicky726 (Nicky726 <at> gmail <dot> com) +# Contributor (AUR): Sergej Pupykin (pupykin <dot> s+arch <at> gmail <dot> com) + +# parabola changes and rationale: +# - Added armv7h + +pkgname=checkpolicy +pkgver=3.2 +pkgrel=1 +pkgdesc="SELinux policy compiler" +arch=('i686' 'x86_64') +arch+=('armv7h') +url='https://github.com/SELinuxProject/selinux' +license=('GPL2') +groups=('selinux') +makedepends=('libsepol>=3.2') +conflicts=("selinux-usr-${pkgname}") +provides=("selinux-usr-${pkgname}=${pkgver}-${pkgrel}") +source=("https://github.com/SELinuxProject/selinux/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz") +sha256sums=('9b1c81fa86fe3867842164448d90c8e7ea94b2987497809c65d4caa87a5c5bc8') + +build() { + cd "${pkgname}-${pkgver}" + make +} + +package() { + cd "${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install + install -m 0755 test/dismod "${pkgdir}"/usr/bin/sedismod + install -m 0755 test/dispol "${pkgdir}"/usr/bin/sedispol +} |