138c0ae751
* Removed substitute, it's part of the generic builder now. * stdenv-initial (Linux): use the real generic builder script. This does require that sed is in the path of the builder of the initial stdenv. svn path=/nixpkgs/trunk/; revision=7498
22 lines
407 B
Bash
22 lines
407 B
Bash
source $stdenv/setup
|
|
|
|
configurePhase() {
|
|
substituteInPlace "setup.cfg" \
|
|
--replace "/usr/local/include" "$sqlite/include" \
|
|
--replace "/usr/local/lib" "$sqlite/lib"
|
|
cp setup.cfg /tmp
|
|
}
|
|
configurePhase=configurePhase
|
|
|
|
buildPhase() {
|
|
$python/bin/python setup.py build
|
|
}
|
|
buildPhase=buildPhase
|
|
|
|
installPhase() {
|
|
$python/bin/python setup.py install --prefix=$out
|
|
}
|
|
installPhase=installPhase
|
|
|
|
genericBuild
|