Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/transmission-remote-gtk/transmission-remote-gtk
transmission-remote-gtk is a GTK client for remote management of the Transmission BitTorrent client, using its HTTP RPC protocol.
https://github.com/transmission-remote-gtk/transmission-remote-gtk
Last synced: 13 days ago
JSON representation
transmission-remote-gtk is a GTK client for remote management of the Transmission BitTorrent client, using its HTTP RPC protocol.
- Host: GitHub
- URL: https://github.com/transmission-remote-gtk/transmission-remote-gtk
- Owner: transmission-remote-gtk
- License: gpl-2.0
- Created: 2012-04-14T10:56:36.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2024-01-09T18:38:12.000Z (10 months ago)
- Last Synced: 2024-07-31T14:09:00.881Z (3 months ago)
- Language: C
- Homepage:
- Size: 3.26 MB
- Stars: 153
- Watchers: 10
- Forks: 47
- Open Issues: 41
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog
- License: COPYING
- Authors: AUTHORS
Awesome Lists containing this project
README
# ABOUT
transmission-remote-gtk is a GTK client for remote management of
the Transmission BitTorrent client, using its HTTP RPC protocol.# DEPENDENCIES
### Runtime/Build Required Dependencies
The following packages are required dependencies for building and running
transmission-remote-gtk:- gtk >= 3.22
- glib >= 2.56 (including gio and gthread)
- json-glib >= 1.2.8
- libsoup >= 3.0
- GNU gettextAn example command for getting the packages required for an Ubuntu/Debian
system:```
# apt install libgtk-3-dev libgeoip-dev gettext libsoup-3.0-dev libjson-glib-dev
```### Optional Dependencies
The following packages are optional dependencies:- libappindicator or libayatana-appindicator3, Application tray support
If these libraries are installed at build time they will be automatically
detected and linked for additional functionality.### Build Only Dependencies
transmission-remote-gtk uses meson for its build system. A relatively new
version of meson is required.- meson >= 0.59.0
- appstream-util (optional, appdata validation)
- desktop-file-utils (optional, desktop file validation)
- rst2man (optional, manpage generation)An example of getting the build dependencies for an Ubuntu/Debian system:
```
# apt install gcc meson appstream-util python-docutils
```**NOTE:** Ubuntu and other stable or LTS distros may have outdated versions of
meson that will not work for compiling transmission-remote-gtk. Meson can also
be installed via pip:```
# apt install python3-pip
$ pip install meson
```# BUILDING
Building transmission-remote-gtk is simple. The following commands will clone
the repository, build transmission-remote-gtk, and install it on your system:```
$ git clone https://github.com/transmission-remote-gtk/transmission-remote-gtk.git
$ cd transmission-remote-gtk
$ meson setup --prefix="$prefix" "$builddir"
$ meson compile -C "$builddir"
# meson install -C "$builddir"
```[Tarball releases](https://github.com/transmission-remote-gtk/transmission-remote-gtk/releases)
are also available to download.# INSTALLING
Installing transmisison-remote-gtk can be done in a few ways besides building from source. There are many distributions that package transmission-remote-gtk for example. However, there is a cross-distribution Flatpak available that is always up to date.
**NOTE**: Only the **latest release** is supported for issues; if your installed version is older you should try the Flatpak or report bugs to your distribution.
## LICENSE
transmission-remote-gtk is released under GNU GPLv2.
See the [COPYING](./COPYING) file for details.## CONTRIBUTING
This project is under active development, and help is always appreciated regardless of skill level. Current
project goals and refactors are being tracked in [the Wiki](https://github.com/transmission-remote-gtk/transmission-remote-gtk/wiki/TODOs).
Take a look if you're interested in helping. Other PRs are also welcome!## CONTACT INFO
Development happens on github (this repository). Issues and pull requests should be submitted here. If
you would like to discuss development or ask general questions about the project, you can try `#transmission-remote-gtk`
on [irc.libera.chat](ircs://irc.libera.chat:6697).