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/csh
     5         kx # Environment path variables for the Qt package:
     5         kx if ( ! $?QT5DIR ) then
     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     setenv QT5DIR /usr/lib@LIBDIRSUFFIX@/qt5
     5         kx   else
     5         kx     # Find the newest Qt directory and set $QT5DIR to that:
     5         kx     foreach qtd ( /usr/lib@LIBDIRSUFFIX@/qt5-* )
     5         kx       if ( -d $qtd ) then
     5         kx         setenv QT5DIR $qtd
     5         kx       endif
     5         kx     end
     5         kx   endif
     5         kx endif
     5         kx set path = ( $path $QT5DIR/bin )