A Qt media library management program (for TV screens)
that is ment to be remote controlled via a web interface from a portable device.
run
git submodules update --init guix package -f package.scm
to run the installed software, see environment variables below.
guix environment --pure -l package.scm
TODO
might need to replace (source (origin …)) with (source #f)
src/libs/cd back to projectrootqmake && makeLIBPATH entries listed in src/libs.pri file to LD_LIBRARY_PATHLD_LIBRARY_PATH
You can set variables with qmake.
qmake PREFIX=/usr # sets the install directory to /usr/bin, /usr/share …
qmake USE_MPV=1 # use libmpv instead of
To set multiple variables use only one command with multiple arguments:
qmake PREFIX=/usr USE_MPV=1
qt (libqt 5.5)
curl (tested with libcurl 4 and libcurl 7)
gnutls / openssl
qmake USE_MPV=1 to use it
When you build this with guix,
libcurl will not know the path to your ssl certifictes.
You must define the ENV variable
export SSL_CERT_DIR=/etc/ssl/certs/
or
export SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
to the path that is correct on your system.