Browse Source

pcre2: new package

Waldemar Brodkorb 1 year ago
parent
commit
56b3cd9366
1 changed files with 30 additions and 0 deletions
  1. 30 0
      package/pcre2/Makefile

+ 30 - 0
package/pcre2/Makefile

@@ -0,0 +1,30 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(ADK_TOPDIR)/rules.mk
+
+PKG_NAME:=		pcre2
+PKG_VERSION:=		10.42
+PKG_RELEASE:=		1
+PKG_HASH:=		a8e52a9bd1bca8f51c5c24823adc2a99acb12288e289a6507090c1a4a4815010
+PKG_DESCR:=		perl compatible regular expression library
+PKG_SECTION:=		libs/misc
+PKG_BUILDDEP:=		cmake-host
+PKG_SITES:=		https://github.com/PCRE2Project/pcre2/archive/refs/tags/
+PKG_OPTS:=		dev
+
+DISTFILES:=             $(PKG_NAME)-$(PKG_VERSION).tar.gz
+WRKDIST=		${WRKDIR}/$(PKG_NAME)-$(PKG_NAME)-$(PKG_VERSION)
+
+include $(ADK_TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,PCRE2,pcre2,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION),$(PKG_OPTS)))
+
+CONFIG_STYLE:=		cmake
+
+pcre2-install:
+	$(INSTALL_DIR) $(IDIR_PCRE2)/usr/lib
+	$(CP) $(WRKINST)/usr/lib/libpcre2*.so* \
+		$(IDIR_PCRE2)/usr/lib
+
+include $(ADK_TOPDIR)/mk/pkg-bottom.mk