Skip to content

Instantly share code, notes, and snippets.

View kekePower's full-sized avatar

kekePower kekePower

  • Viking Mindset Mentoring
  • Asker, Norway
View GitHub Profile
@kekePower
kekePower / krypton.inc
Last active November 19, 2017 16:18
build.leia extension to download, compile and install Kodi 17.4 Krypton
# Extension to build Kodi 17.6 Krypton
# See https://github.com/kekePower/build.leia
STANDALONE=true
VERSION=17.6-Krypton
VNUM=$( echo ${VERSION} | cut -d- -f1 )
SOURCE=https://github.com/xbmc/xbmc/archive/${VERSION}.tar.gz
KODI=${KODIDIR}
PREFIX=/opt/krypton
@kekePower
kekePower / ffmpeg.inc
Last active August 9, 2020 19:04
build.leia extension to download, compile and install ffmpeg
# Extension to build and install FFmpeg
# See https://github.com/kekePower/build.leia
STANDALONE=true
FFMPEG_RELEASE=ffmpeg-3.4.2
SOURCE=http://ffmpeg.org/releases/${FFMPEG_RELEASE}.tar.bz2
FFMPEG=${KODIDIR}/depends
# Checking to see if either wget or curl is available.
if [[ -f $( which wget ) ]]; then