added icon and .desktop file to DSA arch package

This commit is contained in:
2026-02-23 23:52:22 +00:00
parent 4bee36eb7f
commit ba4ced6433
6 changed files with 35 additions and 14 deletions
+7
View File
@@ -0,0 +1,7 @@
[Desktop Entry]
Type=Application
Name=Damn Simple Architecture
Comment=Damn Simple Architecture Emulator
Exec=dsa
Icon=dsa
Categories=Development;
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 99 KiB

+11
View File
@@ -0,0 +1,11 @@
#!/bin/sh
makepkg
# load .env
. ./.env
for pkg in *.pkg.tar.zst; do
curl --user $USERNAME:$PASSWORD \
--upload-file "$pkg" \
https://git.zxq5.dev/api/packages/zxq5/arch/core
done