wok view qt-locale-uk/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
parents 7042a09beaeb
children cb67b4f8be05
line source
1 # SliTaz package receipt.
3 PACKAGE="qt-locale-uk"
4 VERSION="4.8.7"
5 CATEGORY="localization"
6 SHORT_DESC="Ukrainian 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="uk"
13 BOOK=""
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 }