diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2025-04-10 04:17:47 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2025-04-10 04:20:43 +0200 |
commit | d69e39a324a20bb3d92de94b29eb9eb690ea579a (patch) | |
tree | 0b72d59637354013b03da3cf23d814f939970980 /package/pcre | |
parent | 6fadbd51ba79f5d50e9be4b5a495cc4a6da0a182 (diff) |
drop old packages: pcre, clamav, snort, ngrep, spandsp and freeswitch
Diffstat (limited to 'package/pcre')
-rw-r--r-- | package/pcre/Makefile | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/package/pcre/Makefile b/package/pcre/Makefile deleted file mode 100644 index c9814fbae..000000000 --- a/package/pcre/Makefile +++ /dev/null @@ -1,48 +0,0 @@ -# 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:= pcre -PKG_VERSION:= 8.45 -PKG_RELEASE:= 1 -PKG_HASH:= 4e6ce03e0336e8b4a3d6c2b70b1c5e18590a5673a98186da90d4f33c23defc09 -PKG_DESCR:= perl compatible regular expression library -PKG_SECTION:= libs/misc -PKG_URL:= http://www.pcre.org/ -PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=pcre/} -PKG_LIBNAME:= libpcre -PKG_OPTS:= dev - -DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz - -PKG_SUBPKGS:= LIBPCRE LIBPCRECPP -PKGSD_LIBPCRECPP:= pcre c++ library - -include ${ADK_TOPDIR}/mk/host.mk -include ${ADK_TOPDIR}/mk/package.mk - -$(eval $(call HOST_template,PCRE,pcre,${PKG_VERSION}-${PKG_RELEASE})) -$(eval $(call PKG_template,LIBPCRE,libpcre,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS})) -$(eval $(call PKG_template,LIBPCRECPP,libpcrecpp,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKGSD_LIBPCRECPP},${PKG_SECTION})) - -CONFIGURE_ARGS+= --enable-utf \ - --enable-unicode-properties -XAKE_FLAGS+= ${TARGET_CONFIGURE_OPTS} - -ifeq ($(ADK_PACKAGE_LIBPCRECPP),y) -CONFIGURE_ARGS+= --enable-cpp -else -CONFIGURE_ARGS+= --disable-cpp -endif - -libpcre-install: - ${INSTALL_DIR} ${IDIR_LIBPCRE}/usr/lib - ${CP} ${WRKINST}/usr/lib/libpcre{,posix}.so* ${IDIR_LIBPCRE}/usr/lib - -libpcrecpp-install: - ${INSTALL_DIR} ${IDIR_LIBPCRECPP}/usr/lib - ${CP} ${WRKINST}/usr/lib/libpcrecpp.so* ${IDIR_LIBPCRECPP}/usr/lib - -include ${ADK_TOPDIR}/mk/host-bottom.mk -include ${ADK_TOPDIR}/mk/pkg-bottom.mk |