56712d5032
svn path=/nixpkgs/trunk/; revision=796
16 lines
186 B
Bash
Executable file
16 lines
186 B
Bash
Executable file
#! /bin/sh
|
|
|
|
buildinputs=""
|
|
if test -n "$zlibSupport"; then
|
|
buildinputs="$zlib $buildinputs"
|
|
fi
|
|
. $stdenv/setup
|
|
|
|
tar xvfj $src
|
|
cd Python-*
|
|
./configure --prefix=$out
|
|
|
|
make
|
|
make install
|
|
|