summaryrefslogtreecommitdiff
path: root/~fauno/transmission-remote-cli/PKGBUILD
blob: 9a93c431f18569e882892d934d34657699d0a723 (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
# Maintainer: fauno <fauno@kiwwwi.com.ar>
pkgname=transmission-remote-cli
pkgver=20110901
pkgrel=2
pkgdesc="Curses interface for the daemon of the BitTorrent client Transmission"
arch=('any')
url="http://github.com/fagga/transmission-remote-cli"
license=('GPL3')
depends=('python2')
optdepends=('adns-python: Resolve IPs to host names'
            'python-geoip: Guess which country peers come from')
makedepends=('git')
conflicts=('transmission-remote-cli-git')
replaces=('transmission-remote-cli-git')
source=(http://repo.parabolagnulinux.org/other/${pkgname}-${pkgver}.tar.gz
        python2.patch)
md5sums=('1a087e384b413577f9d49917fd8eaab5'
         '6273609fb3a7294328aeaa526b76411c')

_gitroot="http://github.com/fagga/transmission-remote-cli.git"
_gitname="transmission-remote-cli"

mksource() {
    echo "Connecting to the GIT repository..."

    if [ -d "$_gitname" ] ; then
        pushd $_gitname && git pull origin
        echo "The local files are updated."
        popd
    else
        git clone $_gitroot
    fi

    echo "GIT checkout done or server timeout"

    tar czf ${pkgname}-$(date +%Y%m%d).tar.gz ${_gitname}/
}

build() {
    cd "${srcdir}/${_gitname}"
    msg "Starting make..."

    patch -Np1 -i ${srcdir}/python2.patch

	install -d $pkgdir/usr/bin/
	install -D transmission-remote-cli.py $pkgdir/usr/bin/transmission-remote-cli

}

md5sums=('df3cdde879275fbffb1af17872e9c860'
         '6273609fb3a7294328aeaa526b76411c')