diff options
author | Jeremy Hansen <jebrhansen+github@gmail.com> | 2022-06-23 11:42:33 -0600 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-07-02 09:55:39 +0700 |
commit | bce52521d6aeecd206ac4cebbebe81e3e9bc6426 (patch) | |
tree | fdcb983db8c35086659128edb29ac26d1776bd90 /multimedia/kodi/kodi.SlackBuild | |
parent | 41bb74cabba446e1cd85e74c647900922c34ff50 (diff) | |
download | slackbuilds-bce52521d6aeecd206ac4cebbebe81e3e9bc6426.tar.gz |
multimedia/kodi: New maintainer.
Take over maintainence.
Larry has not responded to several email messages and it seems no
others have been able to reach him as well.
Remove shairplay from REQUIRES as it's optional.
Add README on python issues.
There have been issues with kodi addons causing kodi to crash. It
has been determined that the problem is with python3 including the
version that was released with 15.0 and continues through 3.9.12
(the latest patch). This has been fixed in 3.9.13, but that updated
version hasn't made it to 15.0 yet. The README.python contains
instructions on how users can upgrade their python3 package until
Pat releases a patch. The instructions will also be saved in the
program's /usr/doc directory.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'multimedia/kodi/kodi.SlackBuild')
-rw-r--r-- | multimedia/kodi/kodi.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/multimedia/kodi/kodi.SlackBuild b/multimedia/kodi/kodi.SlackBuild index 0d89e50cb9..4adeffbe62 100644 --- a/multimedia/kodi/kodi.SlackBuild +++ b/multimedia/kodi/kodi.SlackBuild @@ -3,6 +3,7 @@ # Slackware build script for kodi # Copyright 2009-2018 Larry Hajali <larryhaja[at]gmail[dot]com> +# Copyright 2022 Jeremy Hansen <jebrhansen+SBo@gmail.com> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -40,9 +41,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -100,6 +98,7 @@ cd $TMP/$PRGNAM-build -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_DOCDIR=/usr/doc/$PRGNAM-$VERSION \ -DAPP_RENDER_SYSTEM=gl \ -DCORE_PLATFORM_NAME="x11" \ -DENABLE_INTERNAL_FSTRCMP=ON \ @@ -150,6 +149,7 @@ mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cat tools/EventClients/README.txt > $PKG/usr/doc/$PRGNAM-$VERSION/Event-Client-README.txt fi cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + cat $CWD/README.python > $PKG/usr/doc/$PRGNAM-$VERSION/README.python ) mkdir -p $PKG/install |