]> git.ipfire.org Git - pakfire.git/blob - scripts/quality-agent.d/090-man-pages
Rewrite the buildsystem of this package.
[pakfire.git] / scripts / quality-agent.d / 090-man-pages
1 #!/bin/bash
2
3 . $(dirname ${0})/qa-include
4
5 DESC="Decompressing man-pages..."
6
7 function check() {
8 for file in $(find ${BUILDROOT}/usr/share/man -type f 2>/dev/null); do
9 log DEBUG " Processing: ${file}"
10 if [[ ${file} =~ \.gz$ ]]; then
11 gzip -d ${file}
12 fi
13 done
14 }
15
16 run
17