777c4ea1d7
* Added MythTV. But it doesn't build properly yet (it compiles fine, but it ignores the prefix). svn path=/nixpkgs/trunk/; revision=2077
11 lines
132 B
Bash
11 lines
132 B
Bash
. $stdenv/setup
|
|
|
|
export QTDIR=$qt3
|
|
|
|
buildPhase=myBuilder
|
|
myBuilder() {
|
|
qmake mythtv.pro || fail
|
|
make || fail
|
|
}
|
|
|
|
genericBuild |