]> git.pld-linux.org Git - packages/dokuwiki-tpl-pldusersorg.git/blobdiff - dokuwiki-find-lang.sh
- add ca-va -> ca_VA
[packages/dokuwiki-tpl-pldusersorg.git] / dokuwiki-find-lang.sh
index add8412224ac01ffeee79e93ca6d9228cb45d438..db54c8399532cb39c53ddfbbeffc4ce530910278 100644 (file)
@@ -1,9 +1,14 @@
 #!/bin/sh
+PROG=${0##*/}
 dir=$RPM_BUILD_ROOT/usr/share/dokuwiki
 langfile=$1
+tmp=$(mktemp) || exit 1
+rc=0
 
-> $langfile
-find $dir -type d -name lang | while read dir; do
+find $dir -type d -name lang > $tmp
+
+echo '%defattr(644,root,root,755)' > $langfile
+while read dir; do
        echo "%dir ${dir#$RPM_BUILD_ROOT}" >> $langfile
        for dir in $dir/*; do
                lang=${dir##*/}
@@ -21,11 +26,22 @@ find $dir -type d -name lang | while read dir; do
                id-ni)
                        lang=id_NI
                ;;
+               ca-va)
+                       lang=ca_VA
+               ;;
                *-*)
-                       echo >&2 "Need mapping for $lang!"
-                       exit 1
+                       echo >&2 "ERROR: Need mapping for $lang!"
+                       rc=1
                ;;
                esac
                echo "%lang($lang) ${dir#$RPM_BUILD_ROOT}" >> $langfile
        done
-done
+done < $tmp
+
+if [ "$(egrep -v '(^%defattr|^$)' $langfile | wc -l)" -le 0 ]; then
+       echo >&2 "$PROG: Error: international files not found!"
+       rc=1
+fi
+
+rm -f $tmp
+exit $rc
This page took 0.094879 seconds and 4 git commands to generate.