summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4e43e952979a98a35da197496ffcffdd29aae61c (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
52
53
# Maintainer: Blair Bonnett <blair dot bonnett at gmail dot com>

pkgname=mlbstreamer-git
pkgver=v0.0.10.r40.gbb3caab
pkgrel=1
pkgdesc="Enables real-time and time-shifted viewing of MLB.tv streams"
url="https://github.com/tonycpsu/mlbstreamer"
arch=('any')
license=('GPL2')
conflicts=('mlbstreamer')
provides=('mlbstreamer')
depends=(
  'python' 'python-six' 'python-requests' 'python-lxml' 'python-pytz'
  'python-tzlocal' 'python-pymemoize' 'python-orderedattrdict' 'python-yaml'
  'python-dateutil' 'streamlink' 'python-prompt_toolkit' 'python-urwid'
  'python-urwid_utils' 'python-panwid'
)
makedepends=('git' 'python-setuptools')
source=(
  'git+https://github.com/tonycpsu/mlbstreamer.git'
)
sha256sums=(
  'SKIP'
)

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

# The dateutil module is provided through the python-dateutil dependency.
# However, setuptools doesn't pick this up and so raises a fatal error
# when the command-line executables start. Removing it from setup.py doesn't
# affect the build and packaging, but prevents this error.
prepare() {
    cd "mlbstreamer"
    sed -i -e "/py-dateutil/d" setup.py
}

# Make the setup.py version match the PKGBUILD version so the .egg-info
# metadata also matches. Not entirely sure this is needed but it seems cleaner.
build() {
    cd "mlbstreamer"
    sed -i -e "s/version=\"[0-9a-z\.]\+\"/version=\"${pkgver:1}\"/" setup.py
    python setup.py build
}

package() {
    cd "mlbstreamer"
    python setup.py install --root="$pkgdir/" --prefix=/usr --optimize=1 --skip-build
    SPDIR=$(python -c 'import site; print(site.getsitepackages()[0])')
    rm -r "$pkgdir$SPDIR/test"
}