1 Commits

Author SHA1 Message Date
SoftExpert
d8c110c10d add cups 2025-01-10 00:14:48 +01:00
3 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1 @@
../_common/systemd-libs-to-libudev.sh

View File

@@ -0,0 +1 @@
../_common/rm-systemd-deps.sh

View File

@@ -0,0 +1,12 @@
#!/bin/bash
if [ "$#" -eq 0 ]; then
echo "Usage: $0 <package repo>"
exit 1
else
for arg in "$@"
do
sed -e "s|./configure|./configure --disable-systemd|" \
-i "${arg}/PKGBUILD"
done
fi