Changeset 32755
- Timestamp:
- 2012-07-16T23:52:09+02:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
packages/libs/lzo/Makefile
r32206 r32755 1 1 # 2 # Copyright (C) 2006-201 0OpenWrt.org2 # Copyright (C) 2006-2012 OpenWrt.org 3 3 # 4 4 # This is free software, licensed under the GNU General Public License v2. … … 9 9 10 10 PKG_NAME:=lzo 11 PKG_VERSION:=2.0 511 PKG_VERSION:=2.06 12 12 PKG_RELEASE:=1 13 13 14 14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz 15 15 PKG_SOURCE_URL:=http://www.oberhumer.com/opensource/lzo/download/ 16 PKG_MD5SUM:= c67cda5fa191bab761c7cb06fe091e3616 PKG_MD5SUM:=95380bd4081f85ef08c5209f4107e9f8 17 17 18 18 PKG_FIXUP:=autoreconf 19 20 19 PKG_INSTALL:=1 21 20 … … 30 29 31 30 define Package/liblzo/description 32 LZO is a data compression library which is suitable for data de-/compression in33 real-time. This means it favours speed over compression ratio.31 LZO is a data compression library which is suitable for data de-/compression 32 in real-time. This means it favours speed over compression ratio. 34 33 endef 35 34 … … 42 41 43 42 TARGET_CFLAGS += $(FPIC) 44 45 43 MAKE_FLAGS += CFLAGS_O="$(TARGET_CFLAGS)" 46 44 47 45 define Build/InstallDev 48 $(INSTALL_DIR) $(1)/usr/include 46 $(INSTALL_DIR) $(1)/usr/include $(1)/usr/lib 49 47 $(CP) $(PKG_INSTALL_DIR)/usr/include/lzo $(1)/usr/include/ 50 51 $(INSTALL_DIR) $(1)/usr/lib52 48 $(CP) $(PKG_INSTALL_DIR)/usr/lib/liblzo2.{a,so*} $(1)/usr/lib/ 53 49 endef
Note: See TracChangeset
for help on using the changeset viewer.