[packages] libucl: don't ship dev shlib symlink, bump release number
[packages.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 PKG_INSTALL:=1
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/libucl
24   SECTION:=libs
25   CATEGORY:=Libraries
26   DEPENDS:=
27   TITLE:=The Ultimate Packer for eXecutables
28   URL:=http://upx.sourceforge.net/
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