[packages] polarssl: fix parallel build
git-svn-id: svn://svn.openwrt.org/openwrt/packages@19660 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
427e457ec3
commit
2b5f4f7837
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (C) 2006-2006 OpenWrt.org
|
# Copyright (C) 2006-2010 OpenWrt.org
|
||||||
#
|
#
|
||||||
# This is free software, licensed under the GNU General Public License v2.
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
# See /LICENSE for more information.
|
# See /LICENSE for more information.
|
||||||
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
|||||||
|
|
||||||
PKG_NAME:=polarssl
|
PKG_NAME:=polarssl
|
||||||
PKG_VERSION:=0.12.1
|
PKG_VERSION:=0.12.1
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=2
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-gpl.tgz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-gpl.tgz
|
||||||
PKG_SOURCE_URL:=http://polarssl.org/code/releases/
|
PKG_SOURCE_URL:=http://polarssl.org/code/releases/
|
||||||
@ -24,8 +24,8 @@ define Package/polarssl/Default
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/libpolarssl/Default/description
|
define Package/libpolarssl/Default/description
|
||||||
The aim of the PolarSSL project is to provide a quality, open-source
|
The aim of the PolarSSL project is to provide a quality, open-source
|
||||||
cryptographic library written in C and targeted at embedded systems.
|
cryptographic library written in C and targeted at embedded systems.
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/libpolarssl
|
define Package/libpolarssl
|
||||||
@ -43,36 +43,29 @@ $(call Package/polarssl/Default)
|
|||||||
TITLE+= (programs)
|
TITLE+= (programs)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
PKG_INSTALL:=1
|
||||||
|
|
||||||
define Build/Configure
|
define Build/Configure
|
||||||
endef
|
endef
|
||||||
|
|
||||||
TARGET_CFLAGS += $(FPIC)
|
TARGET_CFLAGS += $(FPIC)
|
||||||
|
MAKE_FLAGS += OFLAGS="$(TARGET_CFLAGS)"
|
||||||
define Build/Compile
|
|
||||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
||||||
$(TARGET_CONFIGURE_OPTS) \
|
|
||||||
OFLAGS="$(TARGET_CFLAGS)" \
|
|
||||||
all
|
|
||||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
||||||
DESTDIR="$(PKG_INSTALL_DIR)/usr" \
|
|
||||||
install
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Build/InstallDev
|
define Build/InstallDev
|
||||||
$(INSTALL_DIR) $(1)/usr/include
|
$(INSTALL_DIR) $(1)/usr/include
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/include/polarssl $(1)/usr/include/
|
$(CP) $(PKG_INSTALL_DIR)/include/polarssl $(1)/usr/include/
|
||||||
$(INSTALL_DIR) $(1)/usr/lib
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libpolarssl.{a,so} $(1)/usr/lib/
|
$(CP) $(PKG_INSTALL_DIR)/lib/libpolarssl.{a,so} $(1)/usr/lib/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/libpolarssl/install
|
define Package/libpolarssl/install
|
||||||
$(INSTALL_DIR) $(1)/usr/lib
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/libpolarssl.so $(1)/usr/lib/
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/lib/libpolarssl.so $(1)/usr/lib/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/polarssl-progs/install
|
define Package/polarssl-progs/install
|
||||||
$(INSTALL_DIR) $(1)/usr/bin
|
$(INSTALL_DIR) $(1)/usr/bin
|
||||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/polarssl_* $(1)/usr/bin/
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/bin/polarssl_* $(1)/usr/bin/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,libpolarssl))
|
$(eval $(call BuildPackage,libpolarssl))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user