9444180c15
The libtcl is installed with 0555 and that prevents it from being stripped. Signed-off-by: Richard Genoud <richard.genoud@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
54 lines
1.4 KiB
Makefile
54 lines
1.4 KiB
Makefile
################################################################################
|
|
#
|
|
# tcl
|
|
#
|
|
################################################################################
|
|
|
|
TCL_VERSION_MAJOR = 8.4
|
|
TCL_VERSION_MINOR = 19
|
|
TCL_VERSION = $(TCL_VERSION_MAJOR).$(TCL_VERSION_MINOR)
|
|
TCL_SOURCE = tcl$(TCL_VERSION)-src.tar.gz
|
|
TCL_SITE = http://downloads.sourceforge.net/project/tcl/Tcl/$(TCL_VERSION_MAJOR).$(TCL_VERSION_MINOR)
|
|
TCL_LICENSE = tcl license
|
|
TCL_LICENSE_FILES = license.terms
|
|
TCL_SUBDIR = unix
|
|
TCL_INSTALL_STAGING = YES
|
|
TCL_CONF_OPT = \
|
|
--disable-symbols \
|
|
--disable-langinfo \
|
|
--disable-framework
|
|
|
|
HOST_TCL_CONF_OPT = \
|
|
--disable-symbols \
|
|
--disable-langinfo \
|
|
--disable-framework
|
|
|
|
ifeq ($(BR2_PACKAGE_TCL_DEL_ENCODINGS),y)
|
|
define TCL_REMOVE_ENCODINGS
|
|
rm -rf $(TARGET_DIR)/usr/lib/tcl$(TCL_VERSION_MAJOR)/encoding/*
|
|
endef
|
|
TCL_POST_INSTALL_TARGET_HOOKS += TCL_REMOVE_ENCODINGS
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_TCL_SHLIB_ONLY),y)
|
|
define TCL_REMOVE_TCLSH
|
|
rm -f $(TARGET_DIR)/usr/bin/tclsh$(TCL_VERSION_MAJOR)
|
|
endef
|
|
TCL_POST_INSTALL_TARGET_HOOKS += TCL_REMOVE_TCLSH
|
|
else
|
|
define TCL_SYMLINK_TCLSH
|
|
ln -s tclsh$(TCL_VERSION_MAJOR) $(TARGET_DIR)/usr/bin/tclsh
|
|
endef
|
|
TCL_POST_INSTALL_TARGET_HOOKS += TCL_SYMLINK_TCLSH
|
|
endif
|
|
|
|
# library get installed read only, so strip fails
|
|
define TCL_FIXUP_RO_LIB
|
|
chmod +w $(TARGET_DIR)/usr/lib/libtcl*
|
|
endef
|
|
|
|
TCL_POST_INSTALL_TARGET_HOOKS += TCL_FIXUP_RO_LIB
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|