42d19d7e71
The beta versions of KDE Applications 15.12 did not include a kdelibs release, so that package was borrowed from KDE Applications 15.08. The final release of KDE Applications 15.12.0 does include kdelibs, however.
10 lines
210 B
Bash
10 lines
210 B
Bash
addQt4Plugins() {
|
|
if [[ -d "$1/lib/qt4/plugins" ]]; then
|
|
propagatedUserEnvPkgs+=" $1"
|
|
fi
|
|
|
|
if [[ -d "$1/lib/kde4/plugins" ]]; then
|
|
propagatedUserEnvPkgs+=" $1"
|
|
fi
|
|
}
|
|
envHooks+=(addQt4Plugins)
|