Update to v2.3.15
This commit is contained in:
parent
08ee82477f
commit
b4d7746f45
2 changed files with 25 additions and 24 deletions
16
.SRCINFO
16
.SRCINFO
|
@ -1,16 +1,18 @@
|
||||||
pkgbase = kodi-addon-inputstream-adaptive
|
pkgbase = kodi-addon-inputstream-adaptive
|
||||||
pkgdesc = InputStream client for adaptive streams for Kodi 17+
|
pkgdesc = InputStream client for adaptive streams for Kodi 18+
|
||||||
pkgver = 1.0.8
|
pkgver = 2.3.15
|
||||||
pkgrel = 1
|
pkgrel = 1
|
||||||
url = https://github.com/peak3d/inputstream.adaptive
|
url = https://github.com/peak3d/inputstream.adaptive
|
||||||
arch = x86_64
|
arch = x86_64
|
||||||
arch = i686
|
arch = i686
|
||||||
|
arch = armv7h
|
||||||
license = GPL2
|
license = GPL2
|
||||||
makedepends = kodi-dev
|
makedepends = kodi-dev>=18
|
||||||
depends = kodi-platform=20170306.36fb493
|
makedepends = cmake
|
||||||
conflicts = kodi-addon-inputstream-adaptive
|
depends = kodi>=18
|
||||||
source = https://github.com/peak3d/inputstream.adaptive/archive/1.0.8_k17.tar.gz
|
depends = expat
|
||||||
md5sums = 5f0b3acfd278a8e9bfac5bb8191b05ec
|
source = https://github.com/peak3d/inputstream.adaptive/archive/2.3.15.tar.gz
|
||||||
|
sha512sums = 74dba29e6b9982257a4156416331fbaf189ef54c04c4f3b8d87dd1fea703ed29e70ff58f52af35735e3fea31f7a84127c34211cb5f6a11f1ba1d8c6586464fd3
|
||||||
|
|
||||||
pkgname = kodi-addon-inputstream-adaptive
|
pkgname = kodi-addon-inputstream-adaptive
|
||||||
|
|
||||||
|
|
29
PKGBUILD
29
PKGBUILD
|
@ -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>
|
# Contributor: kevku <kevku@gmx.com>
|
||||||
|
|
||||||
pkgname=kodi-addon-inputstream-adaptive
|
pkgname=kodi-addon-inputstream-adaptive
|
||||||
pkgver=1.0.8
|
pkgver=2.3.15
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="InputStream client for adaptive streams for Kodi 17+"
|
pkgdesc='InputStream client for adaptive streams for Kodi 18+'
|
||||||
arch=('x86_64' 'i686')
|
arch=('x86_64' 'i686' 'armv7h')
|
||||||
url="https://github.com/peak3d/inputstream.adaptive"
|
url='https://github.com/peak3d/inputstream.adaptive'
|
||||||
license=('GPL2')
|
license=('GPL2')
|
||||||
makedepends=('kodi-dev')
|
depends=('kodi>=18' 'expat')
|
||||||
depends=('kodi-platform=20170306.36fb493')
|
makedepends=('kodi-dev>=18' 'cmake')
|
||||||
conflicts=("${pkgname%-git}")
|
source=("https://github.com/peak3d/inputstream.adaptive/archive/${pkgver}.tar.gz")
|
||||||
source=("https://github.com/peak3d/inputstream.adaptive/archive/${pkgver}_k17.tar.gz")
|
sha512sums=('74dba29e6b9982257a4156416331fbaf189ef54c04c4f3b8d87dd1fea703ed29e70ff58f52af35735e3fea31f7a84127c34211cb5f6a11f1ba1d8c6586464fd3')
|
||||||
md5sums=('5f0b3acfd278a8e9bfac5bb8191b05ec')
|
|
||||||
|
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "$srcdir/inputstream.adaptive-${pkgver}_k17"
|
cd "$srcdir"/inputstream.adaptive-${pkgver}
|
||||||
cmake \
|
cmake -DCMAKE_INSTALL_PREFIX=/usr
|
||||||
-DCMAKE_INSTALL_PREFIX=/usr
|
|
||||||
make
|
make
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
cd "$srcdir/inputstream.adaptive-${pkgver}_k17"
|
cd "$srcdir"/inputstream.adaptive-${pkgver}
|
||||||
make DESTDIR="$pkgdir/" install
|
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"
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue