diff options
author | Márcio Alexandre Silva Delgado <coadde@lavabit.com> | 2013-04-26 10:21:36 -0300 |
---|---|---|
committer | Márcio Alexandre Silva Delgado <coadde@lavabit.com> | 2013-04-26 10:21:36 -0300 |
commit | c1cd2590bc25ba239285ac84c27196dc0da452b1 (patch) | |
tree | 63d98a0418d7cd6e3329ec483666a521967cf83d /pcr/transmission-remote-cli/PKGBUILD | |
parent | 8b62eb163aaa29bfe1668e5169271a04b0716c7f (diff) | |
parent | 889f174a76aff4d50f029273bd0aadda83880fb3 (diff) | |
download | abslibre-c1cd2590bc25ba239285ac84c27196dc0da452b1.tar.gz abslibre-c1cd2590bc25ba239285ac84c27196dc0da452b1.tar.bz2 abslibre-c1cd2590bc25ba239285ac84c27196dc0da452b1.zip |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to 'pcr/transmission-remote-cli/PKGBUILD')
-rw-r--r-- | pcr/transmission-remote-cli/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/pcr/transmission-remote-cli/PKGBUILD b/pcr/transmission-remote-cli/PKGBUILD new file mode 100644 index 000000000..5e3699bce --- /dev/null +++ b/pcr/transmission-remote-cli/PKGBUILD @@ -0,0 +1,29 @@ +# Maintainer: fauno <fauno@kiwwwi.com.ar> +pkgname=transmission-remote-cli +pkgver=0.10.4 +pkgrel=1 +pkgdesc="Curses interface for the daemon of the BitTorrent client Transmission" +arch=('any') +url="https://github.com/fagga/transmission-remote-cli" +license=('GPL3') +depends=('python2') +optdepends=('transmission-daemon>=2.40: for local transmission management' + 'adns-python: Resolve IPs to host names' + 'python-geoip: Guess which country peers come from') +conflicts=('transmission-remote-cli-git' "transmission-remote-cli<=20111013") +replaces=('transmission-remote-cli-git') +source=(http://repo.parabolagnulinux.org/other/${pkgname}-${pkgver}-${pkgrel}-any.src.tar.xz + python2.patch) + +build() { + cd "${srcdir}/${pkgname}" + msg "Starting make..." + + patch -Np1 -i ${srcdir}/python2.patch + + install -d ${pkgdir}/usr/bin/ + install -Dm755 transmission-remote-cli.py ${pkgdir}/usr/bin/transmission-remote-cli + +} +md5sums=('b85382bc2e24c5733f9c3833098da668' + '6273609fb3a7294328aeaa526b76411c') |