jobcore/audit/PKGBUILD

129 lines
5 KiB
Bash
Raw Normal View History

2022-03-20 13:19:37 +01:00
#!/usr/bin/bash
# JOBoRun : Jwm OpenBox Obarun RUNit
# Maintainer : Joe Bo Run <joborun@disroot.org>
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
# Website : https://pozol.eu
#-----------------------------------------| DESCRIPTION |---------------------------------------
pkgbase=audit
pkgname=('audit' 'python-audit')
2023-01-08 02:26:48 +01:00
pkgver=3.0.9
pkgrel=02
2022-04-22 21:14:33 +02:00
pkgdesc="Userspace components of the audit framework w/o systemd"
2022-03-20 13:19:37 +01:00
url='https://people.redhat.com/sgrubb/audit'
2022-04-22 21:14:33 +02:00
arch=(x86_64)
2023-01-08 02:26:48 +01:00
makedepends=(glibc krb5 libcap-ng libldap swig linux-api-headers python)
2022-03-20 13:19:37 +01:00
options=(emptydirs)
2022-04-22 21:14:33 +02:00
#options=(emptydirs debug) # comment above options uncomment this to have debug packages produced
2023-01-08 02:26:48 +01:00
source=(#$url/$pkgname-$pkgver.tar.gz
$pkgbase-userspace-$pkgver.tar.gz::https://github.com/linux-audit/audit-userspace/archive/refs/tags/v$pkgver.tar.gz
$pkgbase-3.0.8-config_paths.patch
$pkgbase-3.0.9-flex_array_workaround.patch
$pkgbase-3.0.9-undo_flex_array_workaround.patch)
2022-04-22 21:14:33 +02:00
2023-01-08 02:26:48 +01:00
_pick() {
local p="$1" f d; shift
for f; do
d="$srcdir/$p/${f#$pkgdir/}"
mkdir -p "$(dirname "$d")"
mv "$f" "$d"
rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
done
}
prepare() {
2022-04-22 21:14:33 +02:00
# replace the use of /sbin with /usr/bin in configs
2023-01-08 02:26:48 +01:00
patch -Np1 -d $pkgbase-userspace-$pkgver -i ../$pkgbase-3.0.8-config_paths.patch
2022-04-22 21:14:33 +02:00
2023-01-08 02:26:48 +01:00
# fix broken userspace build due to swig: https://listman.redhat.com/archives/linux-audit/2022-February/018843.html
cp -v /usr/include/linux/audit.h $pkgbase-userspace-$pkgver/lib/
patch -Np1 -d $pkgbase-userspace-$pkgver -i ../$pkgbase-3.0.9-flex_array_workaround.patch
2022-04-22 21:14:33 +02:00
2023-01-08 02:26:48 +01:00
cd $pkgbase-userspace-$pkgver
autoreconf -fiv
}
2022-03-20 13:19:37 +01:00
build() {
2023-01-08 02:26:48 +01:00
local configure_options=(
--prefix=/usr
--sbindir=/usr/bin
--sysconfdir=/etc
--libexecdir=/usr/lib/audit
--enable-gssapi-krb5=yes
--enable-systemd=no
2022-03-20 13:19:37 +01:00
--with-libcap-ng=yes
2023-01-08 02:26:48 +01:00
)
cd $pkgbase-userspace-$pkgver
./configure "${configure_options[@]}"
2022-04-22 21:14:33 +02:00
# prevent excessive overlinking due to libtool
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
2023-01-08 02:26:48 +01:00
make
2022-04-22 21:14:33 +02:00
[ -n "$SOURCE_DATE_EPOCH" ] && touch -h -d @$SOURCE_DATE_EPOCH bindings/swig/python/audit.py
2022-03-20 13:19:37 +01:00
}
package_audit() {
2022-04-22 21:14:33 +02:00
depends=(glibc krb5 libkrb5.so libgssapi_krb5.so libcap-ng libcap-ng.so)
provides=(libaudit.so libauparse.so)
2022-03-20 13:19:37 +01:00
backup=(
etc/libaudit.conf
etc/audit/audit-stop.rules
etc/audit/auditd.conf
etc/audit/audisp-remote.conf
etc/audit/zos-remote.conf
etc/audit/plugins.d/af_unix.conf
etc/audit/plugins.d/au-remote.conf
etc/audit/plugins.d/audispd-zos-remote.conf
etc/audit/plugins.d/syslog.conf
)
2023-01-08 02:26:48 +01:00
make DESTDIR="$pkgdir" install -C $pkgbase-userspace-$pkgver
# undo fix for broken swig, so that other programs may use the header file correctly
patch -Np0 -d "$pkgdir" -i "$srcdir/$pkgbase-3.0.9-undo_flex_array_workaround.patch"
rm -v "$pkgdir/usr/include/libaudit.h.orig"
2022-03-20 13:19:37 +01:00
2022-04-22 21:14:33 +02:00
# add log dir
install -vdm 700 "$pkgdir/var/log/$pkgname/"
# add rules.d dir to satisfy augenrules
install -vdm 755 "$pkgdir/etc/audit/rules.d/"
2022-03-20 13:19:37 +01:00
2022-04-22 21:14:33 +02:00
# remove legacy files
rm -frv "$pkgdir/usr/lib/audit"
2023-01-08 02:26:48 +01:00
(
cd "$pkgdir"
_pick python-audit usr/lib/python*
)
2022-03-20 13:19:37 +01:00
}
package_python-audit() {
2022-04-22 21:14:33 +02:00
depends=(audit libaudit.so libauparse.so glibc python)
2022-03-20 13:19:37 +01:00
pkgdesc+=' (python bindings)'
2022-04-22 21:14:33 +02:00
2023-01-08 02:26:48 +01:00
mv -v $pkgname/* "$pkgdir"
2022-03-20 13:19:37 +01:00
}
2022-09-03 00:50:45 +02:00
#---- license gpg-key sha256sums ----
2022-03-20 13:19:37 +01:00
2022-04-22 21:14:33 +02:00
license=(GPL LGPL2.1)
2022-03-20 13:19:37 +01:00
2023-01-08 02:26:48 +01:00
sha512sums=('c0b35d40d3aecb3450ce99422115efe40d56ad199d8f035f836dae94df0d55a4561659673c70fc49056a316bdc8531d7014f4c2a2d60aac66bdf69c262ee3ca0'
'bc699123f810abcf9300728bf61d7fcfcc83677b75fbeb713fb24cc11b2f9edf687661aab70766acde7c3c41c6a62f8e0a54cdfb49d1c7ce2246b67fbe3feec5'
'442bffac895abbd0abe455c36ebc03ed5a9faee16b57347ef1f37c0d9c33777e204da917be3bbe11c56173c2ec96eed60646ac7214da47f828eef5fa104c1ebb'
'92ba0f9b3d3721bf64b56e2f3e2ac4e54b2b6acd9d5646a5ee97eea244cb165e19a56c362de16834925ae063c79e6505687749f1dd67dd0f2997919aea7cb2ef')
b2sums=('921db4ecce0ecd3d412003861f03bb4fd9a9e3b9f721a783cc2f70ad26666f8a4c2585051eac351606e699cda8f47d202cf12523747f19a647d5e2e416ff08a4'
'50be1b4f76ace20d8d14b4c57a9bb69daa3da35fd654aca8730bc287682fe38f1c1917b37469fb087daf9f309ffc15cca15f54166ece0a055f540c2604778fc6'
'2241c3dd29c803493ac8e85afd6031749a46b583514829b8761c24ae12061999b7c95107ec2948dd7edb239f805ca088b7b24229abb5445a4767702539779b0f'
'd89110c32da33c2ca9292391ead930352e4c8935aa86111640130d9e3fbc0ebe27b069a83812530dfbbf28f4ddd33545658c8061d87bfac9a9d3a6a5ff0be4b8')
sha256sums=(8fb63cfe1c2c127dd2908be164f596ac4ea00439f34ee2444840f7103b0ab422 # audit-userspace-3.0.9.tar.gz
c3647e09d1a973595d8e43e373b8644dfb7131328c7fb3e229593af02c72ca42 # audit-3.0.8-config_paths.patch
118c01ae411904b7a7730379ebf7a7506a044182a73d9bcf0620e25e853b698a # audit-3.0.9-flex_array_workaround.patch
f4f4a06fa6070970611f49573180501f588de215cc6c26bfb8804ed9e7621e8f) # audit-3.0.9-undo_flex_array_workaround.patch
# ed95e1aba684a3244ff64df3bdadb5177e24edc9d9e9ae3d602cf54eb6b8a0e5 audit-3.0.9-02-x86_64.pkg.tar.xz
# 3fda4e4b6669a7ef5299d7e8ec08b01af6c437d6e38862ea2d9419d550152d96 python-audit-3.0.9-02-x86_64.pkg.tar.xz