[packages] glib: the nineties called, they want their macros back...
[openwrt/svn-archive/archive.git] / libs / ucl / Makefile
1 #
2 # Copyright (C) 2006-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=ucl
11 PKG_VERSION:=1.03
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://www.oberhumer.com/opensource/ucl/download/
16 PKG_MD5SUM:=852bd691d8abc75b52053465846fba34
17
18 PKG_FIXUP:=libtool
19
20 PKG_INSTALL:=1
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/libucl
25 SECTION:=libs
26 CATEGORY:=Libraries
27 TITLE:=Portable lossless data compression library
28 URL:=http://www.oberhumer.com/opensource/ucl/
29 endef
30
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.
36 endef
37
38 CONFIGURE_ARGS += \
39 --enable-static \
40 --enable-shared \
41 --disable-asm
42
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/
46
47 $(INSTALL_DIR) $(1)/usr/lib
48 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libucl.{a,so*} $(1)/usr/lib/
49 endef
50
51 define Package/libucl/install
52 $(INSTALL_DIR) $(1)/usr/lib
53 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libucl.so.* $(1)/usr/lib/
54 endef
55
56 $(eval $(call BuildPackage,libucl))
57