Update to v2.3.15

This commit is contained in:
DriverXX 2019-02-28 22:16:17 +01:00
parent 08ee82477f
commit b4d7746f45
No known key found for this signature in database
GPG key ID: A9985B04137891F0
2 changed files with 25 additions and 24 deletions

View file

@ -1,16 +1,18 @@
pkgbase = kodi-addon-inputstream-adaptive
pkgdesc = InputStream client for adaptive streams for Kodi 17+
pkgver = 1.0.8
pkgdesc = InputStream client for adaptive streams for Kodi 18+
pkgver = 2.3.15
pkgrel = 1
url = https://github.com/peak3d/inputstream.adaptive
arch = x86_64
arch = i686
arch = armv7h
license = GPL2
makedepends = kodi-dev
depends = kodi-platform=20170306.36fb493
conflicts = kodi-addon-inputstream-adaptive
source = https://github.com/peak3d/inputstream.adaptive/archive/1.0.8_k17.tar.gz
md5sums = 5f0b3acfd278a8e9bfac5bb8191b05ec
makedepends = kodi-dev>=18
makedepends = cmake
depends = kodi>=18
depends = expat
source = https://github.com/peak3d/inputstream.adaptive/archive/2.3.15.tar.gz
sha512sums = 74dba29e6b9982257a4156416331fbaf189ef54c04c4f3b8d87dd1fea703ed29e70ff58f52af35735e3fea31f7a84127c34211cb5f6a11f1ba1d8c6586464fd3
pkgname = kodi-addon-inputstream-adaptive

View file

@ -1,28 +1,27 @@
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
# Maintainer: DriverX <thegio.f [at] gmail [dot] com>
# Contributor: Cedric Girard <girard.cedric@gmail.com>
# Contributor: kevku <kevku@gmx.com>
pkgname=kodi-addon-inputstream-adaptive
pkgver=1.0.8
pkgver=2.3.15
pkgrel=1
pkgdesc="InputStream client for adaptive streams for Kodi 17+"
arch=('x86_64' 'i686')
url="https://github.com/peak3d/inputstream.adaptive"
pkgdesc='InputStream client for adaptive streams for Kodi 18+'
arch=('x86_64' 'i686' 'armv7h')
url='https://github.com/peak3d/inputstream.adaptive'
license=('GPL2')
makedepends=('kodi-dev')
depends=('kodi-platform=20170306.36fb493')
conflicts=("${pkgname%-git}")
source=("https://github.com/peak3d/inputstream.adaptive/archive/${pkgver}_k17.tar.gz")
md5sums=('5f0b3acfd278a8e9bfac5bb8191b05ec')
depends=('kodi>=18' 'expat')
makedepends=('kodi-dev>=18' 'cmake')
source=("https://github.com/peak3d/inputstream.adaptive/archive/${pkgver}.tar.gz")
sha512sums=('74dba29e6b9982257a4156416331fbaf189ef54c04c4f3b8d87dd1fea703ed29e70ff58f52af35735e3fea31f7a84127c34211cb5f6a11f1ba1d8c6586464fd3')
build() {
cd "$srcdir/inputstream.adaptive-${pkgver}_k17"
cmake \
-DCMAKE_INSTALL_PREFIX=/usr
make
cd "$srcdir"/inputstream.adaptive-${pkgver}
cmake -DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd "$srcdir/inputstream.adaptive-${pkgver}_k17"
make DESTDIR="$pkgdir/" install
sed -i 's|special://home/cdm|/usr/lib/kodi/addons/inputstream.adaptive/lib|g' "$pkgdir/usr/share/kodi/addons/inputstream.adaptive/resources/settings.xml"
cd "$srcdir"/inputstream.adaptive-${pkgver}
make DESTDIR="$pkgdir/" install
}