summaryrefslogtreecommitdiff
path: root/package/liblzo
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-10-21 17:25:35 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2013-10-21 17:25:35 +0200
commit98b7adfbd06f0f6bd99ca4805ca34250ee027fa1 (patch)
treea68345ba8ba7ee532e4b7426cadad31d7add24c0 /package/liblzo
parent09d28322f4828a387eeee03d303c833eab8828c5 (diff)
parent32a82e38679501da738199135b35f93ddc8aca0a (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/liblzo')
-rw-r--r--package/liblzo/Makefile16
1 files changed, 4 insertions, 12 deletions
diff --git a/package/liblzo/Makefile b/package/liblzo/Makefile
index 4aa9a16b2..b95d29456 100644
--- a/package/liblzo/Makefile
+++ b/package/liblzo/Makefile
@@ -5,35 +5,27 @@ include ${TOPDIR}/rules.mk
PKG_NAME:= lzo
PKG_VERSION:= 2.04
-PKG_RELEASE:= 1
+PKG_RELEASE:= 2
PKG_MD5SUM:= a383c7055a310e2a71b9ecd19cfea238
PKG_DESCR:= a real-time data compression library
PKG_SECTION:= libs
PKG_URL:= http://www.oberhumer.com/opensource/lzo
PKG_SITES:= http://www.oberhumer.com/opensource/lzo/download/
-
-PKG_SUBPKGS:= LIBLZO LIBLZO_DEV
-PKGSD_LIBLZO_DEV:= lzo library headers
-PKGSC_LIBLZO_DEV:= devel
+PKG_OPTS:= dev
ifeq ($(ADK_STATIC),y)
-PKG_OPTS:= libonly
+PKG_OPTS+= libonly
endif
include ${TOPDIR}/mk/package.mk
$(eval $(call PKG_template,LIBLZO,liblzo,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},$(PKG_OPTS)))
-$(eval $(call PKG_template,LIBLZO_DEV,liblzo-dev,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKGSD_LIBLZO_DEV},${PKGSC_LIBLZO_DEV},$(PKG_OPTS)))
CONFIGURE_ARGS+= --enable-static
MAKE_FLAGS+= CFLAGS_O="${TARGET_CFLAGS}"
-post-install:
+liblzo-install:
${INSTALL_DIR} ${IDIR_LIBLZO}/usr/lib
${CP} ${WRKINST}/usr/lib/liblzo2.so* ${IDIR_LIBLZO}/usr/lib
-liblzo-dev-install:
- ${INSTALL_DIR} ${IDIR_LIBLZO_DEV}/usr/include/lzo
- ${CP} ${WRKINST}/usr/include/lzo/*.h ${IDIR_LIBLZO_DEV}/usr/include/lzo
-
include ${TOPDIR}/mk/pkg-bottom.mk