mirror of
https://github.com/coolsnowwolf/packages
synced 2025-01-08 11:17:36 +08:00
41de8d9d24
update summary * Add Javascript Node v12-v18 support, remove support prior to v6. * Octave 6.0 to 6.4 support added. * Add PHP 8 support. * PHP wrapping is now done entirely via PHP's C API - no more .php wrapper. * Perl 5.8.0 is now the oldest version SWIG supports. * Python 3.3 is now the oldest Python 3 version SWIG supports. * Python 3.9-3.11 support added. * Various memory leak fixes in Python generated code. * Scilab 5.5-6.1 support improved. * Many improvements for each and every target language. * Various preprocessor expression handling improvements. * Improved C99, C++11, C++14, C++17 support. Start adding C++20 standard. * Make SWIG much more move semantics friendly. * Add C++ std::unique_ptr support. * Few minor C++ template handling improvements. * Various C++ using declaration fixes. * Few fixes for handling Doxygen comments. * GitHub Actions is now used instead of Travis CI for continuous integration. * Add building SWIG using CMake as a secondary build system. * Update optional SWIG build dependency for regex support from PCRE to PCRE2. * Couple of stability fixes. * Stability fix in ccache-swig when calculating hashes of inputs. * Some template handling improvements. * R - minor fixes plus deprecation for rtypecheck typemaps being optional. Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
44 lines
978 B
Makefile
44 lines
978 B
Makefile
#
|
|
# Copyright (C) 2006-2013 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=swig
|
|
PKG_VERSION:=4.1.1
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=@SF/$(PKG_NAME)
|
|
PKG_HASH:=2af08aced8fcd65cdb5cc62426768914bedc735b1c250325203716f78e39ac9b
|
|
|
|
PKG_MAINTAINER:=John Crispin <blogic@openwrt.org>, Hirokazu MORIKAWA <morikw2@gmail.com>
|
|
PKG_LICENSE:=GPL-3.0-or-later
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
PKG_HOST_ONLY:=1
|
|
HOST_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/swig
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=swig binding generator
|
|
URL:=http://swig.org/
|
|
BUILDONLY:=1
|
|
endef
|
|
|
|
HOST_CONFIGURE_ARGS += \
|
|
--without-pcre
|
|
|
|
define Package/swig/description
|
|
tool that generates bindings for various languages
|
|
endef
|
|
|
|
$(eval $(call HostBuild))
|
|
$(eval $(call BuildPackage,swig))
|