mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-26 23:16:15 +00:00
8d1de4a4c8
Changelog: https://mesonbuild.com/Release-notes-for-1-5-0.html Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Link: https://github.com/openwrt/openwrt/pull/16425 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
36 lines
955 B
Makefile
36 lines
955 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=meson
|
|
PKG_VERSION:=1.5.1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://github.com/mesonbuild/meson/releases/download/$(PKG_VERSION)
|
|
PKG_HASH:=567e533adf255de73a2de35049b99923caf872a455af9ce03e01077e0d384bed
|
|
|
|
PKG_MAINTAINER:=Andre Heider <a.heider@gmail.com>
|
|
PKG_LICENSE:=Apache-2.0
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
define Host/Configure
|
|
endef
|
|
|
|
define Host/Compile
|
|
endef
|
|
|
|
define Host/Install
|
|
$(INSTALL_DIR) $(STAGING_DIR_HOST)/bin
|
|
$(HOST_BUILD_DIR)/packaging/create_zipapp.py $(HOST_BUILD_DIR) --outfile $(STAGING_DIR_HOST)/bin/meson.py
|
|
$(INSTALL_DIR) $(STAGING_DIR_HOST)/lib/meson
|
|
$(INSTALL_CONF) files/openwrt-cross.txt.in $(STAGING_DIR_HOST)/lib/meson/
|
|
$(INSTALL_CONF) files/openwrt-native.txt.in $(STAGING_DIR_HOST)/lib/meson/
|
|
endef
|
|
|
|
define Host/Clean
|
|
$(call Host/Clean/Default)
|
|
rm -rf $(STAGING_DIR_HOST)/lib/meson
|
|
endef
|
|
|
|
$(eval $(call HostBuild))
|