File: build

package info (click to toggle)
liblocale-msgfmt-perl 0.15-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 324 kB
  • sloc: perl: 1,804; sh: 20; makefile: 7
file content (11 lines) | stat: -rwxr-xr-x 194 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

cd `dirname $0`
rm *.mo
for PO in *.po; do
    MO=$(echo $PO | sed 's/po$/mo/')
    msgfmt -o $MO $PO
    if [ "$PO" = "basic.po" ]; then
        msgfmt -f -o fuzz.mo $PO
    fi
done