nixpkgs/pkgs/applications/video/mythtv/builder.sh
Eelco Dolstra 34326de3c2 * MythTV now installs properly, but it doesn't work yet since Qt has
to be built with MySql client support.

svn path=/nixpkgs/trunk/; revision=2078
2005-01-20 22:07:08 +00:00

15 lines
142 B
Bash

. $stdenv/setup
export QTDIR=$qt3
buildPhase=myBuilder
myBuilder() {
qmake mythtv.pro || fail
make || fail
}
genericBuild
exit 1