blob: ae29c1c139e2d95e6a081501629f6a2d296b085d (
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
|
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
# Contributor: kevku <kevku@gmx.com>
pkgname=kodi-addon-inputstream-adaptive
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"
license=('GPL2')
makedepends=('kodi' 'cmake')
depends=('kodi')
conflicts=("${pkgname%-git}")
source=("https://github.com/peak3d/inputstream.adaptive/archive/${pkgver}.tar.gz")
build() {
cd "$srcdir/inputstream.adaptive-${pkgver}"
cmake \
-DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd "$srcdir/inputstream.adaptive-${pkgver}"
make DESTDIR="$pkgdir/" install
}
md5sums=('cf98a561ee33d329522340fffb29b68e')
|