facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
71 lines
1.5 KiB
Bash
Executable File
71 lines
1.5 KiB
Bash
Executable File
#! /bin/sh
|
|
. "${srcdir=.}/init.sh"; path_prepend_ . ../src
|
|
|
|
# Test of Icon handling in Desktop Entry support.
|
|
|
|
cat <<\EOF > hello.desktop
|
|
[Desktop Entry]
|
|
Name=Hello
|
|
TryExec=hello
|
|
Exec=hello
|
|
Icon=handshake.jpg
|
|
Icon[en_US]=hifive.jpg
|
|
Icon[th]=wai.jpg
|
|
Type=Application
|
|
Keywords=Utility;
|
|
EOF
|
|
|
|
cat <<\EOF > th.po
|
|
# SOME DESCRIPTIVE TITLE.
|
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
# This file is distributed under the same license as the PACKAGE package.
|
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
#
|
|
msgid ""
|
|
msgstr ""
|
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
"Report-Msgid-Bugs-To: \n"
|
|
"POT-Creation-Date: 2019-08-18 12:45+0200\n"
|
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
"Language-Team: Thai <th@li.org>\n"
|
|
"Language: \n"
|
|
"MIME-Version: 1.0\n"
|
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
#: hello.desktop:3
|
|
msgid "Hello"
|
|
msgstr "สวัสดี"
|
|
|
|
#: hello.desktop:10
|
|
msgid "Utility;"
|
|
msgstr "ประโยชน์;"
|
|
EOF
|
|
|
|
cat <<\EOF > hello.desktop.ok
|
|
[Desktop Entry]
|
|
Name[th]=สวัสดี
|
|
Name=Hello
|
|
TryExec=hello
|
|
Exec=hello
|
|
Icon=handshake.jpg
|
|
Icon[en_US]=hifive.jpg
|
|
Icon[th]=wai.jpg
|
|
Type=Application
|
|
Keywords[th]=ประโยชน์;
|
|
Keywords=Utility;
|
|
EOF
|
|
|
|
# Generate the merged .desktop file.
|
|
|
|
${MSGFMT} --desktop --template=hello.desktop -l th th.po -o hello.desktop.tmp \
|
|
|| Exit 1
|
|
LC_ALL=C tr -d '\r' < hello.desktop.tmp > hello.desktop.out || Exit 1
|
|
|
|
: ${DIFF=diff}
|
|
${DIFF} hello.desktop.ok hello.desktop.out
|
|
result=$?
|
|
|
|
exit $result
|