mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-15 07:54:17 +01:00
51 lines
1.2 KiB
Bash
51 lines
1.2 KiB
Bash
# Maintainer: Alexandre Pujol <alexandre@pujol.io>
|
|
# shellcheck disable=SC2034,SC2154,SC2164
|
|
|
|
pkgname=apparmor.d
|
|
pkgver=0.001
|
|
pkgrel=1
|
|
pkgdesc="Full set of apparmor profiles"
|
|
arch=("any")
|
|
url="https://github.com/roddhjav/$pkgname"
|
|
license=('GPL2')
|
|
depends=('apparmor')
|
|
|
|
pkgver() {
|
|
cd "$srcdir/$pkgname"
|
|
echo "0.$(git rev-list --count HEAD)"
|
|
}
|
|
|
|
prepare() {
|
|
git clone "$startdir" "$srcdir/$pkgname"
|
|
cd "$srcdir/$pkgname"
|
|
|
|
./configure --distribution=archlinux
|
|
}
|
|
|
|
package() {
|
|
local _build='.build/apparmor.d'
|
|
cd "$srcdir/$pkgname"
|
|
|
|
# Install all files from root/
|
|
mapfile -t root < <(find root -type f -printf "%P\n")
|
|
for file in "${root[@]}"; do
|
|
install -Dm0644 "root/$file" "$pkgdir/$file"
|
|
done
|
|
|
|
# Install all files from $_build
|
|
mapfile -t build < <(find "$_build/" -type f -printf "%P\n")
|
|
for file in "${build[@]}"; do
|
|
install -Dm0644 "$_build/$file" "$pkgdir/etc/apparmor.d/$file"
|
|
done
|
|
|
|
# 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
|
|
|
|
# Set special access rights
|
|
chmod 0755 "$pkgdir"/usr/bin/*
|
|
}
|