]> git.ipfire.org Git - pakfire.git/blame - scripts/quality-agent.d/090-man-pages
Rewrite the buildsystem of this package.
[pakfire.git] / scripts / quality-agent.d / 090-man-pages
CommitLineData
f165e102
MT
1#!/bin/bash
2
3. $(dirname ${0})/qa-include
4
5DESC="Decompressing man-pages..."
6
7function 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
16run
17