X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/859e8f7f7d8bfbefd610d338d16498190cd51e15..b2803062c9cbd547d32f6ebde1a6f26da31819ce:/package/zlib/Makefile diff --git a/package/zlib/Makefile b/package/zlib/Makefile index 8e497c2f2..681af85c7 100644 --- a/package/zlib/Makefile +++ b/package/zlib/Makefile @@ -1,3 +1,9 @@ +# +# Copyright (C) 2006 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# # $Id$ include $(TOPDIR)/rules.mk @@ -14,14 +20,13 @@ PKG_CAT:=bzcat PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install -include $(TOPDIR)/include/package.mk +include $(INCLUDE_DIR)/package.mk define Package/zlib -SECTION:=base -CATEGORY:=Libraries -TITLE:=Library implementing the deflate compression method -DESCRIPTION:=A library implementing the 'deflate' compression method -URL:=http://www.zlib.net/ + SECTION:=libs + CATEGORY:=Libraries + TITLE:=Library implementing the deflate compression method + URL:=http://www.zlib.net/ endef define Build/Configure @@ -30,8 +35,8 @@ define Build/Configure LDSHARED="$(TARGET_CC) -shared -Wl,-soname,libz.so.1" \ CFLAGS="$(TARGET_CFLAGS) $(CFLAGS_LARGEFILE)" \ ./configure \ - --prefix=/usr \ - --shared \ + --prefix=/usr \ + --shared \ ); endef @@ -56,12 +61,13 @@ define Build/InstallDev endef 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*} endef 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/ endef