mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
27 lines
635 B
Plaintext
27 lines
635 B
Plaintext
TEST_PURPOSE="<Filename> tag"
|
|
|
|
test_code() {
|
|
# Generate applications.menu
|
|
mkdir -p ${XDG_CONFIG_DIR}/menus
|
|
./expand > ${XDG_CONFIG_DIR}/menus/applications.menu <<EOF
|
|
<!DOCTYPE Menu PUBLIC "-//freedesktop//DTD Menu 1.0//EN"
|
|
"http://www.freedesktop.org/standards/menu-spec/1.0/menu.dtd">
|
|
|
|
<Menu>
|
|
<Name>KDE</Name>
|
|
<!-- Search the default locations -->
|
|
<DefaultAppDirs/>
|
|
|
|
<Menu>
|
|
<Name>Applications</Name>
|
|
<Include>
|
|
<Filename>freecell.desktop</Filename>
|
|
</Include>
|
|
</Menu>
|
|
</Menu>
|
|
EOF
|
|
|
|
# Install .desktop files
|
|
installData ${XDG_DATA_DIR}/applications gataxx.desktop mahjongg.desktop freecell.desktop glines.desktop
|
|
}
|