From 480c1d4b13a98f2de6b4013cfc460a19fd7b1d3e Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Mon, 25 Dec 2017 08:49:22 +0100 Subject: add meson/ninja host tools --- package/meson/Makefile | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 package/meson/Makefile (limited to 'package/meson/Makefile') diff --git a/package/meson/Makefile b/package/meson/Makefile new file mode 100644 index 000000000..d16d450e0 --- /dev/null +++ b/package/meson/Makefile @@ -0,0 +1,46 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(ADK_TOPDIR)/rules.mk + +PKG_NAME:= meson +PKG_VERSION:= 0.44.0 +PKG_RELEASE:= 1 +PKG_HASH:= 5cdbc68c63b5b4a8ee862ab3b6393a2633487ebc9b3e1c3da1091b9c912d1d95 +PKG_DESCR:= build utility +PKG_SECTION:= dev/tools +HOST_BUILDDEP:= python3-host ninja-host +PKG_URL:= http://www.mesonbuild.com/ +PKG_SITES:= https://github.com/mesonbuild/meson/archive/ + +DISTFILES:= ${PKG_VERSION}.tar.gz + +PKG_CFLINE_MESON:= depends on ADK_HOST_ONLY + +include $(ADK_TOPDIR)/mk/host.mk +include $(ADK_TOPDIR)/mk/package.mk + +$(eval $(call HOST_template,MESON,meson,$(PKG_VERSION)-${PKG_RELEASE})) + +HOST_STYLE:= manual + +host-configure: + +host-build: + +meson-hostinstall: + (cd $(WRKBUILD); PATH='$(HOST_PATH)' python3 ./setup.py install) + $(INSTALL_DIR) $(STAGING_HOST_DIR)/etc/meson + sed -e "s%@TARGET_CROSS@%$(TARGET_CROSS)%g" \ + -e "s%@TARGET_ARCH@%$(ADK_TARGET_ARCH)%g" \ + -e "s%@TARGET_CPU@%$(ADK_TARGET_CPU_ARCH)%g" \ + -e "s%@TARGET_ENDIAN@%$(ADK_TARGET_ENDIAN)%g" \ + -e "s%@TARGET_CFLAGS@%`printf '"%s", ' $(TARGET_CFLAGS)`%g" \ + -e "s%@TARGET_LDFLAGS@%`printf '"%s", ' $(TARGET_LDFLAGS)`%g" \ + -e "s%@TARGET_CXXFLAGS@%`printf '"%s", ' $(TARGET_CXXFLAGS)`%g" \ + -e "s%@STAGING_HOST_DIR@%$(STAGING_HOST_DIR)%g" \ + $(WRKBUILD)/cross-compilation.conf.in \ + > $(STAGING_HOST_DIR)/etc/meson/cross-compilation.conf + +include ${ADK_TOPDIR}/mk/host-bottom.mk +include ${ADK_TOPDIR}/mk/pkg-bottom.mk -- cgit v1.2.3