Add PKGBUILD & ./configure

This commit is contained in:
Alexandre Pujol 2021-04-02 18:12:15 +01:00
parent f975ac95c7
commit 2d01001020
No known key found for this signature in database
GPG key ID: C5469996F0DF68EC
2 changed files with 180 additions and 0 deletions

44
PKGBUILD Normal file
View file

@ -0,0 +1,44 @@
# Maintainer: Alexandre Pujol <alexandre@pujol.io>
# shellcheck disable=SC2034,SC2154,SC2164
pkgname=apparmor.d
pkgver=21.0402
pkgrel=1
pkgdesc="Full set of apparmor profiles"
arch=("any")
url="https://gitlab.com/archlex/hardening/$pkgname"
license=('GPL2')
depends=('apparmor')
source=("git+file://$PWD?signed")
sha512sums=('SKIP')
validpgpkeys=("06A26D531D56C42D66805049C5469996F0DF68EC")
pkgver() {
date +%y.%m%d
}
prepare() {
cd "$srcdir/$pkgname"
./configure --distribution=archlinux --flavor=desktop
}
package() {
local _root='_build'
cd "$srcdir/$pkgname"
# Install all files from root/
cp --recursive --preserve=mode,ownership,timestamps "$_root/root/"* "$pkgdir/"
# Install all files from apparmor.d/
install -d "$pkgdir"/etc/apparmor.d/
cp --recursive --preserve=mode,ownership,timestamps \
$_root/apparmor.d/* "$pkgdir"/etc/apparmor.d/
# Ensure some systemd services do not start before apparmor rules are loaded
for path in systemd/*; do
service=$(basename "$path")
install -Dm0644 "$path" \
"$pkgdir/usr/lib/systemd/system/$service.d/apparmor.conf"
done
}