2020-04-17, 06:24 PM
I built kodi-pvr/pvr.nextpvr and it shows the guide and changes channels as expected.
When I'm watching LiveTV, the only playback controls are Stop and Record -- I would expect Pause, Rewind/Skip-bacwards and Forward/Skip-forwards.
Do I need to do something special to get these to appear?
^
|
These are the controls I'm talking about
(I built the addon in Arch using the following PKGBUILD)
When I'm watching LiveTV, the only playback controls are Stop and Record -- I would expect Pause, Rewind/Skip-bacwards and Forward/Skip-forwards.
Do I need to do something special to get these to appear?
^
|
These are the controls I'm talking about
(I built the addon in Arch using the following PKGBUILD)
Code:
# Maintainer: Will Marler <will@marler.com>
pkgname=kodi-addon-pvr-nextpvr
pkgver=3.3.19
pkgrel=1
pkgdesc='NextPVR PVR client addon for Kodi'
_koditarget=Leia
_gitname=pvr.nextpvr
_kodiver=18.6
arch=('armv7h' 'i686' 'x86_64')
url="https://github.com/kodi-pvr/${_gitname}"
license=('GPL2')
groups=('kodi-addons')
makedepends=('cmake' 'kodi-platform' 'git' 'kodi-dev')
depends=('kodi')
source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-pvr/${_gitname}/archive/${pkgver}-${_koditarget}.tar.gz"
"kodi-${_kodiver}_${_koditarget}.tar.gz::https://github.com/xbmc/xbmc/archive/${_kodiver}-${_koditarget}.tar.gz"
)
sha256sums=('5f1b7fa00d7248fa840a0e7574bb7714867bff4ad81ceb8ed33cb3aa6d5ccbe9'
'47e6d7d4e01dbda92ff83a3e141ac43003e918133e78b3a4b79faff65184711c')
build() {
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib/kodi \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_SHARED_LIBS=1 \
-DADDONS_TO_BUILD=pvr.nextpvr \
-DADDONS_SRC_PREFIX=../.. \
-B build \
xbmc-${_kodiver}-${_koditarget}/cmake/addons
make -C build
}
package() {
install -d "${pkgdir}/usr"
mv build/.install/lib "${pkgdir}/usr/"
mv build/.install/share "${pkgdir}/usr/"
}