wok view qt-locale-de/receipt @ rev 19159
/etc/init.d/*: use 'action' in pair with 'status'.
'action' returns translated message, so why not to add full translatable /etc/init.d/* content
'action' returns translated message, so why not to add full translatable /etc/init.d/* content
| author | Aleksej Bobylev <al.bobylev@gmail.com> | 
|---|---|
| date | Thu May 26 20:16:45 2016 +0300 (2016-05-26) | 
| parents | bb6560098b70 | 
| children | 7042a09beaeb | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="qt-locale-de"
     4 VERSION="4.8.6"
     5 CATEGORY="misc"
     6 SHORT_DESC="German locale for Qt"
     7 MAINTAINER="al.bobylev@gmail.com"
     8 LICENSE="GPL3 LGPL2.1 FDL other"
     9 WEB_SITE="http://qt-project.org/"
    10 WANTED="qt4"
    12 LOCALE="de"
    13 BOOK="german"
    15 # Rules to gen a SliTaz package suitable for Tazpkg.
    16 genpkg_rules()
    17 {
    18 	usqt=/usr/share/qt/translations
    19 	mkdir -p $fs$usqt
    21 	for qm in $(find $install$usqt -name "*_$LOCALE.qm"); do
    22 		cp -a $install$usqt/${qm##*/} $fs$usqt
    23 	done
    25 	if [ x$BOOK != x ]; then
    26 		usqp=/usr/share/qt/phrasebooks
    27 		mkdir -p $fs$usqp
    28 		cp -a $install$usqp/$BOOK.qph $fs$usqp
    29 	fi
    30 }