summaryrefslogtreecommitdiff
path: root/package/liblzo/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'package/liblzo/Makefile')
-rw-r--r--package/liblzo/Makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/package/liblzo/Makefile b/package/liblzo/Makefile
new file mode 100644
index 000000000..6b8325d84
--- /dev/null
+++ b/package/liblzo/Makefile
@@ -0,0 +1,29 @@
+# $Id$
+#-
+# 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:= lzo
+PKG_VERSION:= 2.02
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 6760e5819f4238328709bf93bf10071c
+
+MASTER_SITES:= http://www.oberhumer.com/opensource/lzo/download/
+
+include ${TOPDIR}/mk/package.mk
+
+$(eval $(call PKG_template,LIBLZO,liblzo,${PKG_VERSION}-${PKG_RELEASE},${ARCH}))
+
+CONFIGURE_STYLE:= gnu
+CONFIGURE_ARGS+= --enable-static
+BUILD_STYLE:= auto
+MAKE_FLAGS+= CFLAGS_O="${TARGET_CFLAGS}"
+INSTALL_STYLE:= auto
+
+post-install:
+ ${INSTALL_DIR} ${IDIR_LIBLZO}/usr/lib/
+ ${CP} ${WRKINST}/usr/lib/liblzo2.so.* ${IDIR_LIBLZO}/usr/lib
+
+include ${TOPDIR}/mk/pkg-bottom.mk