Updated python (2.7).

This commit is contained in:
Arne Fitzenreiter
2010-07-25 20:13:50 +02:00
parent b6de67684f
commit 7924261f8f
24 changed files with 4438 additions and 3089 deletions

View File

@@ -24,7 +24,7 @@
include Config
VER = 2.4.3
VER = 2.7
THISAPP = Python-$(VER)
DL_FILE = $(THISAPP).tar.bz2
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = 141c683447d5e76be1d2bd4829574f02
$(DL_FILE)_MD5 = 0e8c9ec32abf5b732bea7d91b38c3339
install : $(TARGET)
@@ -71,7 +71,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-gdbm-1.patch
cd $(DIR_APP) && OPT="$(CFLAGS)" ./configure --prefix=/usr --enable-shared --disable-nls
cd $(DIR_APP) && OPT="$(CFLAGS)" ./configure --prefix=/usr --enable-shared
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make install
@rm -rf $(DIR_APP)