11 lines
174 B
Bash
Executable File
11 lines
174 B
Bash
Executable File
#! /bin/sh
|
|
|
|
buildinputs=""
|
|
. $stdenv/setup || exit 1
|
|
|
|
tar xvfj $src || exit 1
|
|
cd Python-* || exit 1
|
|
./configure --prefix=$out || exit 1
|
|
make || exit 1
|
|
make install || exit 1
|