# # Copyright (C) 2009 Qi Hardware Inc. # Author: Xiangfu Liu # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # # modified 16/08/2010 # author: jmoore@zedstar.org # modified 20/02/2012 # author: jnbagale@gmail.com # modified 23/10/2012 # fix depends # Install libffi-dev on the host computer include $(TOPDIR)/rules.mk PKG_NAME:=guile PKG_VERSION:=2.0.5 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://ftp.gnu.org/gnu/guile/ PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) PKG_BUILD_PARALLEL:=1 HOST_BUILD_PARALLEL:=1 PKG_FIXUP:=libtool PKG_INSTALL:=1 PKG_BUILD_DEPENDS:=guile2/host HOST_BUILD_DEPENDS:=gettext/host libiconv/host gc/host include $(INCLUDE_DIR)/host-build.mk include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/nls.mk define Package/guile2 MAINTAINER:="Xiangfu Liu" TITLE:=guile2 SECTION:=lang CATEGORY:=Languages DEPENDS:=+libgmp +libpthread +libltdl +libncurses +libreadline +libffi +libunistring +gc +librt URL:=http://savannah.gnu.org/projects/guile/ endef define Package/guile2/description GNU Guile is an interpreter for Scheme, packaged as a library that you can link into your applications to give them their own scripting language. endef CONFIGURE_ARGS += --with-libgmp-prefix --with-libunistring-prefix --with-libltdl-prefix CONFIGURE_VARS += gl_cv_func_duplocale_works=yes guile_cv_use_csqrt="no, Ben NanoNote (cross-compiling)" HOST_CONFIGURE_ARGS += --disable-shared --with-libgmp-prefix --with-libunistring-prefix --with-libltdl-prefix HOST_CONFIGURE_VARS += PKG_CONFIG=true LIBFFI_LIBS=-lffi BDW_GC_LIBS=-lgc define Build/Prepare $(call Build/Prepare/Default) endef define Host/Configure $(call Host/Configure/Default) endef ## On the host, we only compile and install guile2 used for bootstrapping define Host/Compile $(call Host/Compile/Default) endef define Host/Install $(call Host/Install/Default) endef define Build/InstallDev $(INSTALL_DIR) \ $(1)/usr/include \ $(1)/usr/lib \ $(1)/usr/lib/pkgconfig $(CP) \ $(PKG_INSTALL_DIR)/usr/lib/* \ $(1)/usr/lib/ $(CP) \ $(PKG_INSTALL_DIR)/usr/include/* \ $(1)/usr/include/ $(CP) \ $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \ $(1)/usr/lib/pkgconfig/ endef define Package/guile2/install $(INSTALL_DIR) $(1)/usr/bin $(INSTALL_DIR) $(1)/usr/lib $(INSTALL_DIR) $(1)/usr/lib/guile/2.0 $(INSTALL_DIR) $(1)/usr/share/guile/2.0 $(CP) \ $(PKG_INSTALL_DIR)/usr/bin/* \ $(1)/usr/bin/ $(CP) \ $(PKG_INSTALL_DIR)/usr/lib/libguile*.so* \ $(1)/usr/lib/ $(CP) \ $(PKG_INSTALL_DIR)/usr/lib/guile/2.0/* \ $(1)/usr/lib/guile/2.0/ $(CP) \ $(PKG_INSTALL_DIR)/usr/share/guile/2.0/* \ $(1)/usr/share/guile/2.0/ endef $(eval $(call HostBuild)) $(eval $(call BuildPackage,guile2))