diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2020-11-20 00:56:19 +0100 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-11-21 14:03:28 +0800 |
commit | d7584dae14fe8d9f12cb7cadd3a213d1282b9962 (patch) | |
tree | cd7f4a1ffb0a4d368309d9bf0d6837f6c60a37cf /tde-i18n-sr@Latn/sr-fc2l | |
parent | 9a1cd8a43a397e093d59e294eb5e530e5c3a2fe6 (diff) | |
download | tde-i18n-d7584dae14fe8d9f12cb7cadd3a213d1282b9962.tar.gz tde-i18n-d7584dae14fe8d9f12cb7cadd3a213d1282b9962.zip |
Drop automake build support.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 1413e96a065cfce9c02588768b3d204a45ce86e6)
Diffstat (limited to 'tde-i18n-sr@Latn/sr-fc2l')
-rwxr-xr-x | tde-i18n-sr@Latn/sr-fc2l | 91 |
1 files changed, 0 insertions, 91 deletions
diff --git a/tde-i18n-sr@Latn/sr-fc2l b/tde-i18n-sr@Latn/sr-fc2l deleted file mode 100755 index 422124f5223..00000000000 --- a/tde-i18n-sr@Latn/sr-fc2l +++ /dev/null @@ -1,91 +0,0 @@ -#!/bin/sh -# -# sr-fc2l 0.0.0 -# In-place converts UTF8 Serbian Cyrillic text files to Serbian Latin. -# January 15th, 2004. -# -# Author: -# Chusslove Illich (Часлав Илић) -# -# Usage: -# sr-fc2l [FILE...] -# -# Warning: -# Once converted to Latin, files cannot be converted back to Cyrillic, as -# that direction of conversion is ambiguous. So, make backup of originals if -# Cyrillic version might still be needed. -# -# Warning: -# This script cannot properly convert `Љ', `Њ' and `Џ' in all-caps words; -# e.g. `ЉУБЉАНА' would be converted to `LjUBLjANA' instead of correct -# `LJUBLJANA'. However, these cases occur rarely. - -for i in $*; do - if [ -f "$i" ]; then - sed \ - -e "s/А/A/g" \ - -e "s/Б/B/g" \ - -e "s/В/V/g" \ - -e "s/Г/G/g" \ - -e "s/Д/D/g" \ - -e "s/Ђ/Đ/g" \ - -e "s/Е/E/g" \ - -e "s/Ж/Ž/g" \ - -e "s/З/Z/g" \ - -e "s/И/I/g" \ - -e "s/Ј/J/g" \ - -e "s/К/K/g" \ - -e "s/Л/L/g" \ - -e "s/Љ/Lj/g" \ - -e "s/М/M/g" \ - -e "s/Н/N/g" \ - -e "s/Њ/Nj/g" \ - -e "s/О/O/g" \ - -e "s/П/P/g" \ - -e "s/Р/R/g" \ - -e "s/С/S/g" \ - -e "s/Т/T/g" \ - -e "s/Ћ/Ć/g" \ - -e "s/У/U/g" \ - -e "s/Ф/F/g" \ - -e "s/Х/H/g" \ - -e "s/Ц/C/g" \ - -e "s/Ч/Č/g" \ - -e "s/Џ/Dž/g" \ - -e "s/Ш/Š/g" \ - -e "s/а/a/g" \ - -e "s/б/b/g" \ - -e "s/в/v/g" \ - -e "s/г/g/g" \ - -e "s/д/d/g" \ - -e "s/ђ/đ/g" \ - -e "s/е/e/g" \ - -e "s/ж/ž/g" \ - -e "s/з/z/g" \ - -e "s/и/i/g" \ - -e "s/ј/j/g" \ - -e "s/к/k/g" \ - -e "s/л/l/g" \ - -e "s/љ/lj/g" \ - -e "s/м/m/g" \ - -e "s/н/n/g" \ - -e "s/њ/nj/g" \ - -e "s/о/o/g" \ - -e "s/п/p/g" \ - -e "s/р/r/g" \ - -e "s/с/s/g" \ - -e "s/т/t/g" \ - -e "s/ћ/ć/g" \ - -e "s/у/u/g" \ - -e "s/ф/f/g" \ - -e "s/х/h/g" \ - -e "s/ц/c/g" \ - -e "s/ч/č/g" \ - -e "s/џ/dž/g" \ - -e "s/ш/š/g" \ - $i >$i.tmp && \ - mv -f $i.tmp $i - else - echo "\"$i\" does not exist or is not a file!" - fi -done |