20 lines
606 B
Plaintext
20 lines
606 B
Plaintext
# Description: kodi inputstream addon for several manifest types
|
|
# URL: https://github.com/peak3d/inputstream.adaptive
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: kodi
|
|
|
|
name=kodi-addon-inputstream-adaptive
|
|
version=2.4.5
|
|
_codename=Leia
|
|
release=1
|
|
source=(https://github.com/peak3d/inputstream.adaptive/archive/$version-$_codename/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cmake -Sinputstream.adaptive-$version-$_codename -Bbuild -GNinja \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DBUILD_SHARED_LIBS=1
|
|
cmake --build build
|
|
DESTDIR=$PKG cmake --install build
|
|
}
|