wok view minicom-lang/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="minicom-lang"
4 VERSION="2.7.1"
5 CATEGORY="development"
6 TAGS="modem serial"
7 SHORT_DESC="Menu driven communications program - localised messages."
8 MAINTAINER="maintainer@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://salsa.debian.org/minicom-team/minicom"
12 WANTED="minicom"
14 HOST_ARCH="any"
16 # Rules to gen a SliTaz package suitable for Tazpkg.
17 genpkg_rules()
18 {
19 mkdir -p $fs/usr/share/locale
21 # Copy all message files
22 for mf in $install/usr/share/locale/*/LC_MESSAGES/minicom.mo
23 do
24 lang=${mf/\/LC_MESSAGES\/minicom.mo/} # remove suffix
25 lang=${lang##*/} # remove prefix
26 mkdir -p $fs/usr/share/locale/$lang/LC_MESSAGES
27 cp -a $mf $fs/usr/share/locale/$lang/LC_MESSAGES
28 done
29 }