2 # Copyright (C) 2006-2010 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 include $(TOPDIR)/rules.mk
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://www.oberhumer.com/opensource/ucl/download/
16 PKG_MD5SUM:=852bd691d8abc75b52053465846fba34
22 include $(INCLUDE_DIR)/package.mk
27 TITLE:=Portable lossless data compression library
28 URL:=http://www.oberhumer.com/opensource/ucl/
31 define Package/libucl/description
32 UCL is a portable lossless data compression library written in ANSI C. UCL
33 implements a number of compression algorithms that achieve an excellent
34 compression ratio while allowing *very* fast decompression. Decompression
35 requires no additional memory.
43 define Build/InstallDev
44 $(INSTALL_DIR) $(1)/usr/include/ucl
45 $(CP) $(PKG_INSTALL_DIR)/usr/include/ucl/ucl{,conf}.h $(1)/usr/include/ucl/
47 $(INSTALL_DIR) $(1)/usr/lib
48 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libucl.{a,so*} $(1)/usr/lib/
51 define Package/libucl/install
52 $(INSTALL_DIR) $(1)/usr/lib
53 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libucl.so.* $(1)/usr/lib/
56 $(eval $(call BuildPackage,libucl))