use Build/Configure/Default macro, Makefile cleanup
git-svn-id: svn://svn.openwrt.org/openwrt/packages@5329 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@ -12,7 +12,6 @@ PKG_NAME:=curl
|
||||
PKG_VERSION:=7.14.0
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||
PKG_SOURCE_URL:=http://curl.haxx.se/download/ \
|
||||
http://www.mirrorspace.org/curl/ \
|
||||
@ -24,103 +23,67 @@ PKG_SOURCE_URL:=http://curl.haxx.se/download/ \
|
||||
PKG_MD5SUM:=46ce665e47d37fce1a0bad935cce58a9
|
||||
PKG_CAT:=bzcat
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/libcurl
|
||||
SECTION:=libs
|
||||
CATEGORY:=Libraries
|
||||
DEPENDS:=+libopenssl +zlib
|
||||
TITLE:=A client-side URL transfer utility
|
||||
DESCRIPTION:=A client-side URL transfer utility.
|
||||
define Package/curl/Default
|
||||
SECTION:=net
|
||||
CATEGORY:=Network
|
||||
URL:=http://curl.haxx.se/
|
||||
endef
|
||||
|
||||
define Package/curl
|
||||
SECTION:=net
|
||||
CATEGORY:=Network
|
||||
$(call Package/curl/Default)
|
||||
DEPENDS:=+libcurl
|
||||
TITLE:=A client-side URL transfer library
|
||||
DESCRIPTION:=A client-side URL transfer library.
|
||||
URL:=http://curl.haxx.se/
|
||||
endef
|
||||
|
||||
define Package/libcurl
|
||||
$(call Package/curl/Default)
|
||||
SECTION:=libs
|
||||
CATEGORY:=Libraries
|
||||
DEPENDS:=+libopenssl +zlib
|
||||
TITLE:=A client-side URL transfer utility
|
||||
endef
|
||||
|
||||
define Build/Configure
|
||||
(cd $(PKG_BUILD_DIR); rm -f config.cache; \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
CFLAGS="$(strip $(TARGET_CFLAGS))" \
|
||||
CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
|
||||
LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
|
||||
PKG_CONFIG_PATH="$(STAGING_DIR)/usr/lib/pkgconfig" \
|
||||
./configure \
|
||||
--target=$(GNU_TARGET_NAME) \
|
||||
--host=$(GNU_TARGET_NAME) \
|
||||
--build=$(GNU_HOST_NAME) \
|
||||
--program-prefix="" \
|
||||
--program-suffix="" \
|
||||
--prefix=/usr \
|
||||
--exec-prefix=/usr \
|
||||
--bindir=/usr/bin \
|
||||
--datadir=/usr/share \
|
||||
--includedir=/usr/include \
|
||||
--infodir=/usr/share/info \
|
||||
--libdir=/usr/lib \
|
||||
--libexecdir=/usr/lib \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/share/man \
|
||||
--sbindir=/usr/sbin \
|
||||
--sysconfdir=/etc \
|
||||
$(DISABLE_LARGEFILE) \
|
||||
$(DISABLE_NLS) \
|
||||
--enable-shared \
|
||||
--enable-static \
|
||||
--disable-rpath \
|
||||
--with-gnu-ld \
|
||||
--disable-thread \
|
||||
--enable-cookies \
|
||||
--enable-crypto-auth \
|
||||
--enable-nonblocking \
|
||||
--enable-file \
|
||||
--enable-ftp \
|
||||
--enable-http \
|
||||
--enable-ipv6 \
|
||||
--disable-ares \
|
||||
--disable-debug \
|
||||
--disable-dict \
|
||||
--disable-gopher \
|
||||
--disable-ldap \
|
||||
--disable-manual \
|
||||
--disable-sspi \
|
||||
--disable-telnet \
|
||||
--disable-verbose \
|
||||
--with-random="/dev/urandom" \
|
||||
--with-ssl="$(STAGING_DIR)/usr" \
|
||||
--without-ca-bundle \
|
||||
--without-gnutls \
|
||||
--without-libidn \
|
||||
--with-zlib="$(STAGING_DIR)/usr" \
|
||||
$(call Build/Configure/Default, \
|
||||
--enable-shared \
|
||||
--enable-static \
|
||||
--disable-thread \
|
||||
--enable-cookies \
|
||||
--enable-crypto-auth \
|
||||
--enable-nonblocking \
|
||||
--enable-file \
|
||||
--enable-ftp \
|
||||
--enable-http \
|
||||
--enable-ipv6 \
|
||||
--disable-ares \
|
||||
--disable-debug \
|
||||
--disable-dict \
|
||||
--disable-gopher \
|
||||
--disable-ldap \
|
||||
--disable-manual \
|
||||
--disable-sspi \
|
||||
--disable-telnet \
|
||||
--disable-verbose \
|
||||
--with-random="/dev/urandom" \
|
||||
--with-ssl="$(STAGING_DIR)/usr" \
|
||||
--without-ca-bundle \
|
||||
--without-gnutls \
|
||||
--without-libidn \
|
||||
--with-zlib="$(STAGING_DIR)/usr" \
|
||||
);
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
rm -rf $(PKG_INSTALL_DIR)
|
||||
mkdir -p $(PKG_INSTALL_DIR)
|
||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||
DESTDIR="$(PKG_INSTALL_DIR)" \
|
||||
all install
|
||||
endef
|
||||
|
||||
define Package/libcurl/install
|
||||
install -m0755 -d $(1)/usr/lib
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libcurl.so.* $(1)/usr/lib/
|
||||
endef
|
||||
|
||||
define Package/curl/install
|
||||
install -m0755 -d $(1)/usr/bin
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/bin/curl $(1)/usr/bin/
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
mkdir -p $(STAGING_DIR)/usr/bin
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/bin/curl-config $(STAGING_DIR)/usr/bin/
|
||||
@ -133,11 +96,20 @@ define Build/InstallDev
|
||||
endef
|
||||
|
||||
define Build/UninstallDev
|
||||
rm -rf \
|
||||
$(STAGING_DIR)/usr/bin/curl-config \
|
||||
rm -rf $(STAGING_DIR)/usr/bin/curl-config \
|
||||
$(STAGING_DIR)/usr/include/curl \
|
||||
$(STAGING_DIR)/usr/lib/libcurl.{a,so*}
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,libcurl))
|
||||
define Package/curl/install
|
||||
install -d -m0755 $(1)/usr/bin
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/bin/curl $(1)/usr/bin/
|
||||
endef
|
||||
|
||||
define Package/libcurl/install
|
||||
install -d -m0755 $(1)/usr/lib
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libcurl.so.* $(1)/usr/lib/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,curl))
|
||||
$(eval $(call BuildPackage,libcurl))
|
||||
|
Reference in New Issue
Block a user