diff options
author | Russell Standish <hpcoder@hpcoders.com.au> | 2015-10-20 03:35:29 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2015-12-08 00:56:52 (GMT) |
commit | 724242f158e6c0f3f7211dde1000f4b3203dcf35 (patch) | |
tree | 37558593ff6d8327c8b0bd8e2c4204fef78d7fdf /src/tcl.mk | |
parent | 6ebda0e8118f0195f3d4c6f5a63b158a9272f312 (diff) | |
download | mxe-724242f158e6c0f3f7211dde1000f4b3203dcf35.zip mxe-724242f158e6c0f3f7211dde1000f4b3203dcf35.tar.gz mxe-724242f158e6c0f3f7211dde1000f4b3203dcf35.tar.bz2 |
add packages TCL/Tk
Diffstat (limited to 'src/tcl.mk')
-rw-r--r-- | src/tcl.mk | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/tcl.mk b/src/tcl.mk new file mode 100644 index 0000000..5b4e458 --- /dev/null +++ b/src/tcl.mk @@ -0,0 +1,27 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := tcl +$(PKG)_IGNORE := +$(PKG)_VERSION := 8.6.4 +$(PKG)_CHECKSUM := 9e6ed94c981c1d0c5f5fefb8112d06c6bf4d050a7327e95e71d417c416519c8d +$(PKG)_SUBDIR := tcl$($(PKG)_VERSION) +$(PKG)_FILE := tcl$($(PKG)_VERSION)-src.tar.gz +$(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/tcl/Tcl/$($(PKG)_VERSION)/$($(PKG)_FILE) +$(PKG)_DEPS := gcc zlib + +define $(PKG)_UPDATE + $(WGET) -q -O- 'http://sourceforge.net/projects/tcl/files/Tcl/' | \ + $(SED) -n 's,.*/\([0-9][^"]*\)/".*,\1,p' | \ + head -1 +endef + +define $(PKG)_BUILD + cd '$(1)/win' && ./configure \ + $(MXE_CONFIGURE_OPTS) \ + --enable-threads \ + $(if $(findstring x86_64,$(TARGET)), --enable-64bit) \ + CFLAGS='-D__MINGW_EXCPT_DEFINE_PSDK' + $(MAKE) -C '$(1)/win' install install-private-headers $(MXE_DISABLE_PROGRAMS) +endef + |