Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

452 Commits   2 Branches   1 Tag
     5         kx #!/bin/sh
     5         kx # Environment variables for the Qt package.
     5         kx #
     5         kx # It's best to use the generic directory to avoid
     5         kx # compiling in a version-containing path:
     5         kx if [ -d /usr/lib@LIBDIRSUFFIX@/qt5 ]; then
     5         kx   QT5DIR=/usr/lib@LIBDIRSUFFIX@/qt5
     5         kx else
     5         kx   # Find the newest Qt directory and set $QT5DIR to that:
     5         kx   for qtd in /usr/lib@LIBDIRSUFFIX@/qt5-* ; do
     5         kx     if [ -d $qtd ]; then
     5         kx       QT5DIR=$qtd
     5         kx     fi
     5         kx   done
     5         kx fi
     5         kx PATH="$PATH:$QT5DIR/bin"
     5         kx export QT5DIR