Posts by Elusiv3


    well building the docker version is not so different now, it's actually cleaner imho.

    Code
    RUN \
      echo "**** compile oscam ****" && \
      mkdir -p /tmp/oscam && \
      git clone https://git.streamboard.tv/common/oscam.git /tmp/oscam && \
      cd /tmp/oscam && \
      git apply /tmp/patches/oscam-emu.patch && \
      ./config.sh

    or also dont statically include the patch in the Dockerfile but rather curl it from oscam-emu repo.


    ah, also, to keep the Dockerfile cleaner, take a look at the patched libdvbcsa repo so you dont have to actually include anything.

    Code
    RUN \
      git clone https://github.com/oe-mirrors/libdvbcsa.git /tmp/libdvbcsa && \
      cd /tmp/libdvbcsa && \
      echo "**** patch libdvbcsa with icam support****" && \
      ./bootstrap && \
      ./configure \
        --enable-neon \
      make -j 2 && \
      make check && \
      make DESTDIR=/ install