mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
53 lines
1.4 KiB
Makefile
53 lines
1.4 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=quickjs
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/bellard/quickjs.git
|
|
PKG_SOURCE_DATE:=2022-03-06
|
|
PKG_SOURCE_VERSION:=2788d71e823b522b178db3b3660ce93689534e6d
|
|
PKG_MIRROR_HASH:=skip
|
|
PKG_LICENSE:=MIT
|
|
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/quickjs
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
TITLE:=QuickJS Javascript engine
|
|
URL:=https://bellard.org/quickjs/
|
|
MAINTAINER:=Erik Karlsson <erik.karlsson@genexis.eu>
|
|
DEPENDS:=+libatomic
|
|
endef
|
|
|
|
define Package/quickjs/description
|
|
QuickJS is a small and embeddable Javascript engine. It supports
|
|
the ES2020 specification including modules, asynchronous
|
|
generators, proxies and BigInt.
|
|
endef
|
|
|
|
MAKE_FLAGS = \
|
|
prefix=/usr \
|
|
CONFIG_SMALL=y \
|
|
EXTRA_LIBS="-latomic" \
|
|
CROSS_PREFIX="$(TARGET_CROSS)"
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/lib/quickjs
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/quickjs/libquickjs.a $(1)/usr/lib/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/quickjs/libquickjs.lto.a $(1)/usr/lib/
|
|
$(INSTALL_DIR) $(1)/usr/include/quickjs
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/quickjs/quickjs.h $(1)/usr/include/quickjs/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/quickjs/quickjs-libc.h $(1)/usr/include/quickjs/
|
|
endef
|
|
|
|
define Package/quickjs/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/qjs $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,quickjs))
|