Update package version to 9.21.18

This commit is contained in:
2026-02-20 13:32:36 +02:00
parent 5484cc79bb
commit 1bca50ca18
9 changed files with 118 additions and 2 deletions
+15
View File
@@ -14,6 +14,21 @@ build() {
package() {
meson install -C build --destdir="$BPM_OUTPUT"
# Install config files
install -Dm644 "$BPM_WORKDIR"/named.conf "$BPM_OUTPUT"/etc/named.conf
# Setup named directory and zones
install -dm770 -o 0 -g 20 "$BPM_OUTPUT"/var/named
install -Dm640 -o 0 -g 20 "$BPM_WORKDIR"/localhost.zone "$BPM_OUTPUT"/var/named/localhost.zone
install -Dm640 -o 0 -g 20 "$BPM_WORKDIR"/localhost.ip6.zone "$BPM_OUTPUT"/var/named/localhost.ip6.zone
install -Dm640 -o 0 -g 20 "$BPM_WORKDIR"/127.0.0.zone "$BPM_OUTPUT"/var/named/127.0.0.zone
# Install sysusers file
install -Dm644 "$BPM_WORKDIR"/sysusers "$BPM_OUTPUT"/usr/lib/sysusers.d/named.conf
# Install esvm service
install -Dm644 "$BPM_WORKDIR"/named.esv "$BPM_OUTPUT"/etc/esvm/services/named.esv
# Install package license
install -Dm644 "$BPM_SOURCE"/{LICENSE,COPYRIGHT} -t "$BPM_OUTPUT"/usr/share/licenses/bind/
}