mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 13:20:08 +02:00
26 lines
740 B
Plaintext
26 lines
740 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.6.5/Python-2.6.5.tgz"
|
|
CHECKSUM_MD5="cd04b5b9383b6c1fccdaa991af762cf4"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
BUILD {
|
|
cd Python-2.6.5/Modules/_ctypes/libffi
|
|
libtoolize --force --copy --install
|
|
cd ../../..
|
|
echo "AC_CONFIG_MACRO_DIR([m4])" >> configure.in
|
|
libtoolize --force --copy --install
|
|
aclocal
|
|
autoconf
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY` --enable-shared LDFLAGS=-L/boot/common/lib CFLAGS=-I/boot/develop/headers/3rdparty
|
|
make
|
|
}
|
|
|
|
INSTALL {
|
|
cd Python-2.6.5
|
|
make install
|
|
}
|
|
LICENSE="Python"
|
|
COPYRIGHT="1990-2010, Python Software Foundation"
|