projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
don't exit on tar errors in wireless-tools - sgid flag on directory not accepted...
[openwrt.git]
/
package
/
zlib
/
Makefile
diff --git
a/package/zlib/Makefile
b/package/zlib/Makefile
index
02659bb
..
df4a475
100644
(file)
--- 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
# $Id$
include $(TOPDIR)/rules.mk
@@
-6,22
+12,21
@@
PKG_NAME:=zlib
PKG_VERSION:=1.2.3
PKG_RELEASE:=3
PKG_VERSION:=1.2.3
PKG_RELEASE:=3
-PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://www.zlib.net @SF/zlib
PKG_MD5SUM:=dee233bf288ee795ac96a98cc2e369b6
PKG_CAT:=bzcat
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://www.zlib.net @SF/zlib
PKG_MD5SUM:=dee233bf288ee795ac96a98cc2e369b6
PKG_CAT:=bzcat
+PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
-include $(
TOPDIR)/package/rules
.mk
+include $(
INCLUDE_DIR)/package
.mk
define Package/zlib
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
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 \
LDSHARED="$(TARGET_CC) -shared -Wl,-soname,libz.so.1" \
CFLAGS="$(TARGET_CFLAGS) $(CFLAGS_LARGEFILE)" \
./configure \
- --prefix=/usr \
- --shared \
+
--prefix=/usr \
+
--shared \
);
endef
);
endef
@@
-61,7
+66,7
@@
define Build/UninstallDev
endef
define Package/zlib/install
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
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libz.so.* $(1)/usr/lib/
endef
This page took
0.026241 seconds
and
4
git commands to generate.