Skip to content

Commit 8f8143f

Browse files
committed
remove metainfo
1 parent d15c428 commit 8f8143f

File tree

2 files changed

+1
-16
lines changed

2 files changed

+1
-16
lines changed

README-AppImage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ This script will:
3434

3535
The AppImage includes:
3636
- TIC-80 executable (tic80 binary)
37-
- Desktop integration files (.desktop, icon, metainfo)
37+
- Desktop integration files (.desktop, icon)
3838
- AppRun script for proper execution
3939

4040
## Distribution

build-appimage.sh

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ mkdir -p "$APPDIR/usr/bin"
2424
mkdir -p "$APPDIR/usr/lib"
2525
mkdir -p "$APPDIR/usr/share/applications"
2626
mkdir -p "$APPDIR/usr/share/icons/hicolor/256x256/apps"
27-
mkdir -p "$APPDIR/usr/share/metainfo"
2827

2928
# Copy binary
3029
cp build/bin/tic80 "$APPDIR/usr/bin/"
@@ -35,20 +34,6 @@ sed 's|Icon=tic80|Icon=tic80.png|' build/linux/tic80.desktop.in > "$APPDIR/usr/s
3534
# Copy icon
3635
cp build/linux/tic80.png "$APPDIR/usr/share/icons/hicolor/256x256/apps/"
3736

38-
# Configure and copy metainfo
39-
VERSION_MAJOR=$(grep "VERSION_MAJOR" cmake/version.cmake | sed 's/.*VERSION_MAJOR \([0-9]*\).*/\1/')
40-
VERSION_MINOR=$(grep "VERSION_MINOR" cmake/version.cmake | sed 's/.*VERSION_MINOR \([0-9]*\).*/\1/')
41-
VERSION_REVISION=$(grep "VERSION_REVISION" cmake/version.cmake | sed 's/.*VERSION_REVISION \([0-9]*\).*/\1/')
42-
VERSION_YEAR=$(date +%Y)
43-
VERSION_MONTH=$(date +%m)
44-
VERSION_DAY=$(date +%d)
45-
46-
sed -e "s/@PROJECT_VERSION@/$VERSION_MAJOR.$VERSION_MINOR.$VERSION_REVISION/g" \
47-
-e "s/@VERSION_YEAR@/$VERSION_YEAR/g" \
48-
-e "s/@VERSION_MONTH@/$VERSION_MONTH/g" \
49-
-e "s/@VERSION_DAY@/$VERSION_DAY/g" \
50-
build/linux/com.tic80.TIC_80.metainfo.xml.in > "$APPDIR/usr/share/metainfo/com.tic80.TIC_80.metainfo.xml"
51-
5237
# Create AppRun script
5338
cat > "$APPDIR/AppRun" << 'EOF'
5439
#!/bin/bash

0 commit comments

Comments
 (0)