Tuesday, August 05, 2025

Compiling/Installing XBMC from git

#!/bin/bash # git clone git://github.com/xbmc/xbmc.git git checkout 7e52c1d make -C tools/depends/native/JsonSchemaBuilder/ sudo cp tools/depends/native/JsonSchemaBuilder/bin/JsonSchemaBuilder /usr/local/bin sudo chmod 775 /usr/local/bin/JsonSchemaBuilder PREFIX=”/usr/local” # You could also make this /opt/kodi for instance. Whatever you like sudo make -C ./tools/depends/target/libdcadec PREFIX=${PREFIX} sudo make -C ./tools/depends/target/crossguid PREFIX=${PREFIX} export PKG_CONFIG_PATH=”${PREFIX}/lib/pkgconfig” export CFLAGS=”$CFLAGS -I${PREFIX}/include” export CXXFLAGS=”$CFLAGS -I${PREFIX}/include” export TAGLIB_CFLAGS=”-I/usr/include/taglib” export TAGLIB_LIBS=”-ltag” sed […]

Read More

Compile ASUS AC53 Wifi Driver.

First time setup get/compile drivers > git clone https://github.com/cilynx/rtl88x2bu> cd rtl88x2bu/> make clean> make> sudo make install Signing the driver and creating certs hereSigning the driver with existing certs here Updating after kernel or driver update. get/compile drivers > cd rtl88x2bu/> git pull> make clean> make> sudo make install Signing the driver and creating certs […]

Read More
Back To Top