mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 21:30:08 +02:00
24 lines
628 B
Plaintext
24 lines
628 B
Plaintext
DESCRIPTION="python - An interpreted, interactive, object-oriented programming language"
|
|
HOMEPAGE="http://www.python.org"
|
|
SRC_URI="http://www.python.org/ftp/python/2.7/Python-2.7a1.tgz"
|
|
CHECKSUM_MD5="1dead8228f03928b69c123ef32ab36c0"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
BUILD {
|
|
cd Python-2.7a1/Modules/_ctypes/libffi
|
|
libtoolize --force --copy --install
|
|
cd ../../..
|
|
echo "AC_CONFIG_MACRO_DIR([m4])" >> configure.in
|
|
libtoolize --force --copy --install
|
|
aclocal
|
|
autoconf
|
|
./configure --prefix=/boot/common --enable-shared CFLAGS=-I/boot/develop/headers/3rdparty
|
|
make
|
|
}
|
|
|
|
INSTALL {
|
|
cd Python-2.7a1
|
|
make install
|
|
}
|