blob: f690daaf4d861666f3289ef09fde0fd2d5bbb2bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# 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:= log4cplus
PKG_VERSION:= 1.0.4
PKG_RELEASE:= 2
PKG_HASH:= c2bb01b5f4bff5fa768700e98ead4a79dfd556096c9f3f0401849da7ab80fbef
PKG_DESCR:= logging framework for c++
PKG_SECTION:= libs/misc
PKG_NEEDS:= threads
PKG_URL:= http://log4cplus.sourceforge.net/
PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=log4cplus/log4cplus-stable/${PKG_VERSION}/}
PKG_OPTS:= dev
DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
include ${ADK_TOPDIR}/mk/package.mk
$(eval $(call PKG_template,LOG4CPLUS,log4cplus,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
log4cplus-install:
${CP} ${WRKINST}/* ${IDIR_LOG4CPLUS}
include ${ADK_TOPDIR}/mk/pkg-bottom.mk
|