]> git.pld-linux.org Git - packages/rpm-build-macros.git/blobdiff - dokuwiki-find-lang.sh
- 1.577: %cmake includes -DCMAKE_BUILD_TYPE, -DCMAKE_INSTALL_PREFIX, -DLIB_SUFFIX...
[packages/rpm-build-macros.git] / dokuwiki-find-lang.sh
index 86f46faf6b4f08cf697d4570f632322a9c0411bb..489388cada2826cdf2e28ebf23c2db127d04892a 100644 (file)
@@ -1,10 +1,19 @@
 #!/bin/sh
 PROG=${0##*/}
+if [ $# = 2 ]; then
+       # for using same syntax as rpm own find-lang
+       RPM_BUILD_ROOT=$1
+       shift
+fi
 dir=$RPM_BUILD_ROOT/usr/share/dokuwiki
 langfile=$1
+tmp=$(mktemp) || exit 1
+rc=0
+
+find $dir -type d -name lang > $tmp
 
 echo '%defattr(644,root,root,755)' > $langfile
-find $dir -type d -name lang | while read dir; do
+while read dir; do
        echo "%dir ${dir#$RPM_BUILD_ROOT}" >> $langfile
        for dir in $dir/*; do
                lang=${dir##*/}
@@ -22,16 +31,25 @@ find $dir -type d -name lang | while read dir; do
                id-ni)
                        lang=id_NI
                ;;
+               ca-valencia)
+                       lang=ca@valencia
+               ;;
+               de-informal)
+                       lang=de
+               ;;
                *-*)
-                       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!"
-       exit 1
+       rc=1
 fi
+
+rm -f $tmp
+exit $rc
This page took 0.053083 seconds and 4 git commands to generate.