package/qbe: new host package

dependency for host-hare

Signed-off-by: Francois Perrad <francois.perrad.86@gmail.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
Francois Perrad
2026-08-03 08:59:32 +02:00
committed by Julien Olivain
parent e3ff7a6f02
commit ce99164846
3 changed files with 28 additions and 0 deletions

View File

@@ -1186,6 +1186,7 @@ F: package/coxpcall/
F: package/dado/
F: package/ficl/
F: package/janet/
F: package/qbe/
F: package/libtomcrypt/
F: package/libtommath/
F: package/linenoise/

5
package/qbe/qbe.hash Normal file
View File

@@ -0,0 +1,5 @@
# Hashes from: https://c9x.me/compile/releases.html
sha256 a6d50eb952525a234bf76ba151861f73b7a382ac952d985f2b9af1df5368225d qbe-1.2.tar.xz
# Locally computed
sha256 2b026a9038be00b1102da922775ffea4857ea755f63694efc36dcbcbdebf23d6 LICENSE

22
package/qbe/qbe.mk Normal file
View File

@@ -0,0 +1,22 @@
################################################################################
#
# qbe
#
################################################################################
QBE_VERSION = 1.2
QBE_SITE = https://c9x.me/compile/release
QBE_SOURCE = qbe-$(QBE_VERSION).tar.xz
QBE_LICENSE = MIT
QBE_LICENSE_FILES = LICENSE
define HOST_QBE_BUILD_CMDS
$(HOST_MAKE_ENV) $(MAKE) -C $(@D)
endef
define HOST_QBE_INSTALL_CMDS
$(HOST_MAKE_ENV) $(MAKE) -C $(@D) \
PREFIX="$(HOST_DIR)" install
endef
$(eval $(host-generic-package))