23 lines
427 B
Bash
23 lines
427 B
Bash
|
source $stdenv/setup
|
||
|
source $substituter
|
||
|
|
||
|
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
|