Hi Daumeier:
I make this changes in the PKGBUILD file.
First:
in console, download the file: git clone https://aur.archlinux.org/kodi-addon-pvr-iptvsimple.git
Then:
Enter to the directory created and edit the PKGBUILD file, between cd and cmake lines, with:
CFLAGS=“$CFLAGS -Wp,-U_GLIBCXX_ASSERTIONS”
CXXFLAGS=“$CXXFLAGS -Wp,-U_GLIBCXX_ASSERTIONS”
For example:
build() {
mkdir -p “pvr.iptvsimple-${pkgver}-${_koditarget}/build”
cd “pvr.iptvsimple-${pkgver}-${_koditarget}/build”
CFLAGS="$CFLAGS -Wp,-U_GLIBCXX_ASSERTIONS"
CXXFLAGS="$CXXFLAGS -Wp,-U_GLIBCXX_ASSERTIONS"
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib/kodi \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_SHARED_LIBS=1 \
-DADDONS_TO_BUILD=pvr.iptvsimple \
-DADDONS_SRC_PREFIX=../.. \
../../xbmc-${_kodiver}-${_koditarget}/cmake/addons
make
Then: save the file and run makepkg -si in the directory of the PKGBUILD