diff options
-rw-r--r-- | package/pcre/Makefile | 6 | ||||
-rw-r--r-- | package/poco/Makefile | 35 |
2 files changed, 38 insertions, 3 deletions
diff --git a/package/pcre/Makefile b/package/pcre/Makefile index f628c7886..49db206c1 100644 --- a/package/pcre/Makefile +++ b/package/pcre/Makefile @@ -4,9 +4,9 @@ include ${ADK_TOPDIR}/rules.mk PKG_NAME:= pcre -PKG_VERSION:= 8.34 -PKG_RELEASE:= 2 -PKG_HASH:= 1dd78994c81e44ac41cf30b2a21d4b4cc6d76ccde7fc6e77713ed51d7bddca47 +PKG_VERSION:= 8.36 +PKG_RELEASE:= 1 +PKG_HASH:= b37544f33caed0cc502a1e729c3b1d3df5086dcc819b9125c30700c239246c9e PKG_DESCR:= perl compatible regular expression library PKG_SECTION:= libs/misc PKG_BUILDDEPS:= gettext-tiny diff --git a/package/poco/Makefile b/package/poco/Makefile new file mode 100644 index 000000000..cfcc533a4 --- /dev/null +++ b/package/poco/Makefile @@ -0,0 +1,35 @@ +# 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:= poco +PKG_VERSION:= 1.6.0 +PKG_RELEASE:= 1 +PKG_HASH:= 8e745271d57db8d544d5c8e37b3b7db01d7934e0257a41af0b8da9ee8b1554ee +PKG_DESCR:= c++ network libraries +PKG_SECTION:= libs/misc +PKG_BUILDDEP:= zlib pcre +PKG_DEPENDS:= zlib libpcre +PKG_URL:= http://pocoproject.org +PKG_SITES:= http://pocoproject.org/releases/poco-1.6.0/ +PKG_OPTS:= dev + +DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.gz + +include $(ADK_TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,POCO,poco,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION),$(PKG_OPTS))) + +CONFIG_STYLE:= minimal +CONFIGURE_ARGS+= --prefix=/usr \ + --no-tests \ + --no-samples +XAKE_FLAGS+= GCC_HONOUR_COPTS=s + +poco-install: + $(INSTALL_DIR) $(IDIR_POCO)/usr/lib + $(CP) $(WRKINST)/usr/lib/libPoco*.so* \ + $(IDIR_POCO)/usr/lib + +include $(ADK_TOPDIR)/mk/pkg-bottom.mk |