parent
48bcf66cc1
commit
a01eba3fad
|
@ -122,8 +122,8 @@ To uninstall just run:
|
||||||
```sh
|
```sh
|
||||||
rm -f $HOME/.local/bin/lite-xl
|
rm -f $HOME/.local/bin/lite-xl
|
||||||
rm -rf $HOME/.local/share/icons/hicolor/scalable/apps/lite-xl.svg \
|
rm -rf $HOME/.local/share/icons/hicolor/scalable/apps/lite-xl.svg \
|
||||||
$HOME/.local/share/applications/org.lite_xl.lite_xl.desktop \
|
$HOME/.local/share/applications/com.lite_xl.LiteXL.desktop \
|
||||||
$HOME/.local/share/metainfo/org.lite_xl.lite_xl.appdata.xml \
|
$HOME/.local/share/metainfo/com.lite_xl.LiteXL.appdata.xml \
|
||||||
$HOME/.local/share/lite-xl
|
$HOME/.local/share/lite-xl
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -192,10 +192,10 @@ else
|
||||||
install_data('resources/icons/lite-xl.svg',
|
install_data('resources/icons/lite-xl.svg',
|
||||||
install_dir : 'share/icons/hicolor/scalable/apps'
|
install_dir : 'share/icons/hicolor/scalable/apps'
|
||||||
)
|
)
|
||||||
install_data('resources/linux/org.lite_xl.lite_xl.desktop',
|
install_data('resources/linux/com.lite_xl.LiteXL.desktop',
|
||||||
install_dir : 'share/applications'
|
install_dir : 'share/applications'
|
||||||
)
|
)
|
||||||
install_data('resources/linux/org.lite_xl.lite_xl.appdata.xml',
|
install_data('resources/linux/com.lite_xl.LiteXL.appdata.xml',
|
||||||
install_dir : 'share/metainfo'
|
install_dir : 'share/metainfo'
|
||||||
)
|
)
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -9,8 +9,8 @@ This folder contains resources that is used for building or packaging the projec
|
||||||
### Packaging
|
### Packaging
|
||||||
|
|
||||||
- `icons/icon.{icns,ico,inl,rc,svg}`: lite-xl icon in various formats.
|
- `icons/icon.{icns,ico,inl,rc,svg}`: lite-xl icon in various formats.
|
||||||
- `linux/org.lite_xl.lite_xl.appdata.xml`: AppStream metadata.
|
- `linux/com.lite_xl.LiteXL.appdata.xml`: AppStream metadata.
|
||||||
- `linux/org.lite_xl.lite_xl.desktop`: Desktop file for Linux desktops.
|
- `linux/com.lite_xl.LiteXL.desktop`: Desktop file for Linux desktops.
|
||||||
- `macos/appdmg.png`: Background image for packaging MacOS DMGs.
|
- `macos/appdmg.png`: Background image for packaging MacOS DMGs.
|
||||||
- `macos/Info.plist.in`: Template for generating `info.plist` on MacOS. See `macos/macos-retina-display.md` for details.
|
- `macos/Info.plist.in`: Template for generating `info.plist` on MacOS. See `macos/macos-retina-display.md` for details.
|
||||||
- `windows/001-lua-unicode.diff`: Patch for allowing Lua to load files with UTF-8 filenames on Windows.
|
- `windows/001-lua-unicode.diff`: Patch for allowing Lua to load files with UTF-8 filenames on Windows.
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<component type="desktop">
|
<component type="desktop">
|
||||||
<id>org.lite_xl.lite_xl</id>
|
<id>com.lite_xl.LiteXL</id>
|
||||||
<metadata_license>MIT</metadata_license>
|
<metadata_license>MIT</metadata_license>
|
||||||
<project_license>MIT</project_license>
|
<project_license>MIT</project_license>
|
||||||
<name>Lite XL</name>
|
<name>Lite XL</name>
|
||||||
<summary>A lightweight text editor written in Lua</summary>
|
<summary>A lightweight text editor written in Lua</summary>
|
||||||
<content_rating type="oars-1.0" />
|
<content_rating type="oars-1.0" />
|
||||||
<launchable type="desktop-id">org.lite_xl.lite_xl.desktop</launchable>
|
<launchable type="desktop-id">com.lite_xl.LiteXL.desktop</launchable>
|
||||||
|
|
||||||
<description>
|
<description>
|
||||||
<p>
|
<p>
|
|
@ -138,7 +138,7 @@ generate_appimage() {
|
||||||
mv AppRun LiteXL.AppDir/
|
mv AppRun LiteXL.AppDir/
|
||||||
# These could be symlinks but it seems they doesn't work with AppimageLauncher
|
# These could be symlinks but it seems they doesn't work with AppimageLauncher
|
||||||
cp resources/icons/lite-xl.svg LiteXL.AppDir/
|
cp resources/icons/lite-xl.svg LiteXL.AppDir/
|
||||||
cp resources/linux/org.lite_xl.lite_xl.desktop LiteXL.AppDir/
|
cp resources/linux/com.lite_xl.LiteXL.desktop LiteXL.AppDir/
|
||||||
|
|
||||||
if [[ $ADDONS == true ]]; then
|
if [[ $ADDONS == true ]]; then
|
||||||
addons_download "${BUILD_DIR}"
|
addons_download "${BUILD_DIR}"
|
||||||
|
|
Loading…
Reference in New Issue