From 768b995f980f2875f588ab8f90e5b597cfa4f5d8 Mon Sep 17 00:00:00 2001 From: Austin Lane Date: Mon, 9 Dec 2024 11:42:28 -0500 Subject: [PATCH] liborcania: Install library on target Signed-off-by: Austin Lane --- libs/liborcania/Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/libs/liborcania/Makefile b/libs/liborcania/Makefile index 7591b46f58..de70b0600e 100644 --- a/libs/liborcania/Makefile +++ b/libs/liborcania/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=liborcania PKG_VERSION:=2.3.0 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/babelouest/orcania/tar.gz/v$(PKG_VERSION)? @@ -35,4 +35,9 @@ define Package/liborcania/description Potluck with different functions for different purposes that can be shared among C programs. endef +define Package/liborcania/install + $(INSTALL_DIR) $(1)/usr/lib + $(CP) $(PKG_INSTALL_DIR)/usr/lib/liborcania.so* $(1)/usr/lib/ +endef + $(eval $(call BuildPackage,liborcania)) -- 2.30.2