summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b77127095c62d92f8b718f360eb9bcdee41b5160 (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
# Maintainer: willemw <willemw12@gmail.com>
# Contributor: Clément Démoulins <clement@archivel.fr>

pkgname=python-tvdb_api-git
pkgver=3.1.r2.gd2705e6
pkgrel=1
pkgdesc="Easy to use interface to thetvdb.com"
arch=('any')
url="https://github.com/dbr/tvdb_api"
license=('GPL')
depends=('python-requests-cache')
makedepends=('git' 'python-setuptools')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=($pkgname::git+$url.git)
md5sums=('SKIP')

pkgver() {
  cd $pkgname
  git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
  cd $pkgname
  python setup.py build
}

package() {
  cd $pkgname
  python setup.py install --root="$pkgdir/" --optimize=1
}