summaryrefslogtreecommitdiff
path: root/package/meson/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2017-12-25 08:49:22 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2017-12-25 08:53:39 +0100
commit480c1d4b13a98f2de6b4013cfc460a19fd7b1d3e (patch)
treeb849c78786c83ec90a5729c2812f5426d55f842d /package/meson/Makefile
parent15b5d38385d8261339eed833b85a339505f4105c (diff)
add meson/ninja host tools
Diffstat (limited to 'package/meson/Makefile')
-rw-r--r--package/meson/Makefile46
1 files changed, 46 insertions, 0 deletions
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