1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-11-18 22:43:53 +01:00

standardize Makefile, remove dup description

SVN-Revision: 4816
This commit is contained in:
Nicolas Thill 2006-09-23 13:31:54 +00:00
parent 6f7a13a3a2
commit 9ad2d01f13

@ -23,11 +23,10 @@ PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/package.mk
define Package/zlib define Package/zlib
SECTION:=base SECTION:=libs
CATEGORY:=Libraries CATEGORY:=Libraries
TITLE:=Library implementing the deflate compression method TITLE:=Library implementing the deflate compression method
DESCRIPTION:=A library implementing the 'deflate' compression method URL:=http://www.zlib.net/
URL:=http://www.zlib.net/
endef endef
define Build/Configure define Build/Configure
@ -36,8 +35,8 @@ define Build/Configure
LDSHARED="$(TARGET_CC) -shared -Wl,-soname,libz.so.1" \ LDSHARED="$(TARGET_CC) -shared -Wl,-soname,libz.so.1" \
CFLAGS="$(TARGET_CFLAGS) $(CFLAGS_LARGEFILE)" \ CFLAGS="$(TARGET_CFLAGS) $(CFLAGS_LARGEFILE)" \
./configure \ ./configure \
--prefix=/usr \ --prefix=/usr \
--shared \ --shared \
); );
endef endef
@ -62,12 +61,13 @@ define Build/InstallDev
endef endef
define Build/UninstallDev define Build/UninstallDev
rm -rf $(STAGING_DIR)/usr/include/z{conf,lib}.h \ rm -rf \
$(STAGING_DIR)/usr/include/z{conf,lib}.h \
$(STAGING_DIR)/usr/lib/libz.{a,so*} $(STAGING_DIR)/usr/lib/libz.{a,so*}
endef endef
define Package/zlib/install define Package/zlib/install
install -m0755 -d $(1)/usr/lib install -d -m0755 $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libz.so.* $(1)/usr/lib/ $(CP) $(PKG_INSTALL_DIR)/usr/lib/libz.so.* $(1)/usr/lib/
endef endef