forked from transmission-remote-gui/transgui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add basic snap package files, transmission-remote-gui#1109
- Loading branch information
1 parent
c3a9bbb
commit c5515ec
Showing
3 changed files
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
[Desktop Entry] | ||
Version=1.0 | ||
Name=TransGUI | ||
GenericName=Transmission Remote GUI | ||
Comment=Transmission Remote GUI | ||
Exec=@bindir@/transgui | ||
TryExec=@bindir@/transgui | ||
Icon=transgui | ||
Terminal=false | ||
Type=Application | ||
Categories=Internet; | ||
MimeType=application/x-bittorrent | ||
X-KDE-Protocols=magnet | ||
Keywords=Torrent;Transmission; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
--- | ||
name: transgui | ||
version: version | ||
summary: Transmission Remote GUI | ||
version-script: cat VERSION.txt | ||
description: | | ||
Transmission Remote GUI is feature rich cross platform front-end | ||
to remotely control Transmission daemon via its RPC protocol. | ||
It is faster and has more functionality than builtin Transmission | ||
web interface. | ||
icon: transgui.png | ||
grade: stable | ||
confinement: strict | ||
|
||
parts: | ||
transgui: | ||
plugin: dump | ||
source: . | ||
prime: | ||
- etc | ||
- usr | ||
- var | ||
- lib | ||
- lang | ||
- LICENSE | ||
- transgui | ||
- transgui.desktop | ||
- README.md | ||
- history.txt | ||
- transgui.png | ||
override-build: | | ||
snapcraftctl build | ||
sed -i 's|Icon=transgui|Icon=${SNAP}/transgui.png|' ${SNAPCRAFT_PART_INSTALL}/transgui.desktop | ||
build-packages: | ||
- git | ||
- make | ||
- lazarus | ||
- coreutils | ||
stage-packages: | ||
- libx11-6 | ||
- libcairo2 | ||
- libssl-dev | ||
- libatk1.0-0 | ||
- libgtk2.0-0 | ||
- libglib2.0-0 | ||
- libpango-1.0-0 | ||
- libgdk-pixbuf2.0-0 | ||
|
||
apps: | ||
transgui: | ||
desktop: transgui.desktop | ||
plugs: | ||
- desktop | ||
- desktop-legacy | ||
- wayland | ||
- x11 | ||
- unity7 | ||
- network | ||
- home | ||
command: transgui |