3a6e9d2f3f
This package provides a ucontext.h C API on musl libc. Architecture support table based on: https://github.com/kaniini/libucontext/tree/libucontext-1.2#supported-features Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
18 lines
495 B
Makefile
18 lines
495 B
Makefile
################################################################################
|
|
#
|
|
# libucontext
|
|
#
|
|
################################################################################
|
|
|
|
LIBUCONTEXT_VERSION = 1.2
|
|
LIBUCONTEXT_SITE = $(call github,kaniini,libucontext,libucontext-$(LIBUCONTEXT_VERSION))
|
|
LIBUCONTEXT_LICENSE = ISC
|
|
LIBUCONTEXT_LICENSE_FILES = LICENSE
|
|
LIBUCONTEXT_INSTALL_STAGING = YES
|
|
|
|
LIBUCONTEXT_CONF_OPTS = \
|
|
-Dfreestanding=false \
|
|
-Dexport_unprefixed=true
|
|
|
|
$(eval $(meson-package))
|