nixpkgs/pkgs/desktops/kde-4.2/utils/builder.sh
Sander van der Burg a901776a5f Added support for KDE 4.2 python modules
svn path=/nixpkgs/trunk/; revision=14461
2009-03-09 14:44:42 +00:00

14 lines
453 B
Bash

source $stdenv/setup
myPatchPhase()
{
for i in printer-applet/cmake-modules/FindSystemConfigPrinter.py printer-applet/printer-applet.py
do
sed -i -e "s|/usr/share/system-config-printer|$system_config_printer/share/system-config-printer|" $i
done
sed -i -e "s|import cupshelpers.ppds, cupshelpers.cupshelpers|import ppds, cupshelpers|" printer-applet/cmake-modules/FindSystemConfigPrinter.py
}
patchPhase=myPatchPhase
genericBuild