summaryrefslogtreecommitdiff
path: root/package/liblogging
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-05-28 10:24:47 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-05-28 10:24:47 +0200
commitcd4740237a8257dde31ace29230f5544aa130328 (patch)
tree02b7130c9c219dd0b8e7c58414f5c98a02994d12 /package/liblogging
parentaac657a90afe72d3e4ff1e7dbbcdbd236e0ba586 (diff)
add new package rsyslog and dependencies
Diffstat (limited to 'package/liblogging')
-rw-r--r--package/liblogging/Makefile30
1 files changed, 30 insertions, 0 deletions
diff --git a/package/liblogging/Makefile b/package/liblogging/Makefile
new file mode 100644
index 000000000..c9bdb50cf
--- /dev/null
+++ b/package/liblogging/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 $(TOPDIR)/rules.mk
+
+PKG_NAME:= liblogging
+PKG_VERSION:= 1.0.4
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 034083ef1424a566fdeefc56a719691f
+PKG_DESCR:= standard logging library
+PKG_SECTION:= libs
+PKG_URL:= http://www.liblogging.org/
+PKG_SITES:= http://download.rsyslog.com/liblogging/
+PKG_OPTS:= dev
+
+DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,LIBLOGGING,liblogging,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
+
+CONFIGURE_ARGS+= --disable-man-pages \
+ --disable-journal
+
+liblogging-install:
+ $(INSTALL_DIR) $(IDIR_LIBLOGGING)/usr/lib
+ $(CP) $(WRKINST)/usr/lib/liblogging*.so* \
+ $(IDIR_LIBLOGGING)/usr/lib
+
+include ${TOPDIR}/mk/pkg-bottom.mk