summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 42121fca42c3c72da0eaa4b4fe1facad4c99ab42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Maintainer: Kyle MacLeod <aur.kmac5@recursor.net>
pkgname=mlbv
pkgver=0.0.5
pkgrel=1
pkgdesc='Command-line interface to streaming MLB games (with MLB.tv subscription), game schedule and scores.'
arch=('any')
url='https://github.com/kmac/mlbv'
license=('GPL3')
depends=('python-requests' 'python-lxml' 'python-dateutil' 'streamlink')
makedepends=('python-setuptools')
source=("https://github.com/kmac/$pkgname/archive/v$pkgver.tar.gz")
md5sums=('d9d39890586bc625b419f4ce3f1bd6ec')

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

# vim:set ts=2 sw=2 et: