wok view minicom-lang/receipt @ rev 24521

updated ettercap (0.8.3 -> 0.8.3.1)
author Hans-G?nter Theisgen
date Tue Feb 22 15:47:04 2022 +0100 (2022-02-22)
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 }