blob: f832013eb130f39c39fa5eda6f58ef17c6939ae6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
# Maintainer: Zoey Bauer <zoey.erin.bauer@gmail.com>
# Maintainer: Caroline Snyder <hirpeng@gmail.com>
pkgname=shelly
pkgver=2.0.10
pkgrel=1
pkgdesc="Shelly: A Modern Arch Package Manager"
arch=('x86_64')
url="https://github.com/ZoeyErinBauer/Shelly-ALPM"
license=('GPL-3.0-only')
provides=('shelly')
conflicts=('shelly-git' 'shelly-bin')
depends=(
'pacman'
'gtk4'
'glib2'
'sudo'
'tar'
'bash'
'git'
'hicolor-icon-theme'
'dbus'
'glibc'
)
optdepends=(
'flatpak: For supporting flatpak implementation.'
'archlinux-appstream-data: package icons and metadata'
'fish: Fish shell completions'
)
makedepends=('dotnet-sdk-10.0' 'clang')
# Source tarball from GitHub release
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ZoeyErinBauer/Shelly-ALPM/archive/v${pkgver}.tar.gz")
sha256sums=('c2c74fafd3fcfc502d6737adea4cbb1e1cd678ddf4980e0f282132567095200d')
build() {
cd "$srcdir/Shelly-ALPM-${pkgver}"
dotnet publish Shelly-CLI/Shelly-CLI.csproj -c Release -o out-cli --nologo -p:InstructionSet=${INSTRUCTIONS:=x86-64}
dotnet publish Shelly.Gtk/Shelly.Gtk.csproj -c Release -r linux-x64 -o out --nologo -p:InstructionSet=${INSTRUCTIONS:=x86-64}
dotnet publish Shelly-Notifications/Shelly-Notifications.csproj -c Release -r linux-x64 -o out-notify --nologo -p:InstructionSet=${INSTRUCTIONS:=x86-64}
}
package() {
cd "$srcdir/Shelly-ALPM-${pkgver}"
# Install Shelly.Gtk binary
install -Dm755 out/shelly-ui "$pkgdir/usr/bin/shelly-ui"
# Install Shelly-Notifications binary
install -Dm755 out-notify/Shelly-Notifications "$pkgdir/usr/bin/shelly-notifications"
# Install Shelly-CLI binary
install -Dm755 out-cli/shelly "$pkgdir/usr/bin/shelly"
# Install desktop entry
cat <<'EOF' | install -Dm644 /dev/stdin "$pkgdir/usr/share/applications/com.shellyorg.shelly.desktop"
[Desktop Entry]
Name=Shelly
Comment=A Modern Arch Package Manager
Exec=/usr/bin/shelly-ui
Icon=shelly
Type=Application
Categories=System;Utility;
Terminal=false
Actions=FlatpakInstall;FlatpakUpdate;FlatpakRemove;
[Desktop Action FlatpakInstall]
Name=Flatpak Install
Icon=flatpak-symbolic
Exec=/usr/bin/shelly-ui --page flatpak-install
[Desktop Action FlatpakUpdate]
Name=Flatpak Update
Icon=flatpak-symbolic
Exec=/usr/bin/shelly-ui --page flatpak-update
[Desktop Action FlatpakRemove]
Name=Flatpak Remove
Icon=flatpak-symbolic
Exec=/usr/bin/shelly-ui --page flatpak-remove
EOF
# Install desktop entry for notification service
cat <<'EOF' | install -Dm644 /dev/stdin "$pkgdir/usr/share/applications/com.shellyorg.shelly-notifications.desktop"
[Desktop Entry]
Name=Shelly Notifications
Comment=Notification service for Shelly package manager
Exec=/usr/bin/shelly-notifications
Icon=shelly-tray
Type=Application
Categories=System;Utility;
Terminal=false
NoDisplay=true
EOF
# Install icon
install -Dm644 Shelly.Gtk/Assets/shellylogo.png "$pkgdir/usr/share/icons/hicolor/256x256/apps/shelly.png"
install -Dm644 Shelly.Gtk/Assets/shellylogo-tray.png "$pkgdir/usr/share/icons/hicolor/256x256/apps/shelly-tray.png"
install -Dm644 Shelly.Gtk/Assets/shellylogo-update.png "$pkgdir/usr/share/icons/hicolor/256x256/apps/shelly-update.png"
install -Dm644 Shelly.Gtk/Assets/svg/flatpak-symbolic.svg "$pkgdir/usr/share/icons/hicolor/symbolic/apps/flatpak-symbolic.svg"
install -Dm644 Shelly.Gtk/Assets/svg/arch-symbolic.svg "$pkgdir/usr/share/icons/hicolor/symbolic/apps/arch-symbolic.svg"
# Install fish shell completions
install -Dm644 shelly.fish "$pkgdir/usr/share/fish/vendor_completions.d/shelly.fish"
# Install Flatpak integration script
cat <<'SCRIPT' | install -Dm755 /dev/stdin "$pkgdir/usr/bin/shelly-flatpak-integrate"
#!/bin/bash
# Adds "Manage in Shelly" right-click action to all Flatpak .desktop files
FLATPAK_DIRS=(
"/var/lib/flatpak/exports/share/applications"
"$HOME/.local/share/flatpak/exports/share/applications"
)
LOCAL_APPS_DIR="$HOME/.local/share/applications"
mkdir -p "$LOCAL_APPS_DIR"
for dir in "${FLATPAK_DIRS[@]}"; do
[ -d "$dir" ] || continue
for desktop_file in "$dir"/*.desktop; do
[ -f "$desktop_file" ] || continue
filename=$(basename "$desktop_file")
app_id="${filename%.desktop}"
dest="$LOCAL_APPS_DIR/$filename"
# Copy if override doesn't exist yet
[ -f "$dest" ] || cp "$desktop_file" "$dest"
# Skip if already patched
grep -q "ShellyManage" "$dest" && continue
# Add action to existing Actions= line or insert one
if grep -q "^Actions=" "$dest"; then
sed -i 's/^Actions=\(.*\)/Actions=\1ShellyManage;/' "$dest"
else
sed -i '/^\[Desktop Entry\]/a Actions=ShellyManage;' "$dest"
fi
cat >> "$dest" << EOF
[Desktop Action ShellyManage]
Name=Manage in Shelly
Icon=shelly
Exec=/usr/bin/shelly-ui --page flatpak-install
EOF
done
done
update-desktop-database "$LOCAL_APPS_DIR" 2>/dev/null || true
echo "Flatpak desktop entries patched with Shelly integration."
SCRIPT
}
|