summaryrefslogtreecommitdiffstats
path: root/package/openssl
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-09-22 04:15:33 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-09-22 04:15:33 +0000
commite7a15b92d368191961fd8c1e125ba2dbaead55ae (patch)
tree89e4be7bf401fe9ac6ad624a53ae8a53e8cbf971 /package/openssl
parentd889dbeb9efa71ac6bdae40cafe68b84199ec3b9 (diff)
install OpenSSL pkgconfig dev files
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8941 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/openssl')
-rw-r--r--package/openssl/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/package/openssl/Makefile b/package/openssl/Makefile
index 0f8ba5aca..36b5b24e2 100644
--- a/package/openssl/Makefile
+++ b/package/openssl/Makefile
@@ -113,11 +113,17 @@ define Build/InstallDev
$(CP) $(PKG_INSTALL_DIR)/usr/include/openssl $(STAGING_DIR)/usr/include/
mkdir -p $(STAGING_DIR)/usr/lib/
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{crypto,ssl}.{a,so*} $(STAGING_DIR)/usr/lib/
+ mkdir -p $(STAGING_DIR)/usr/lib/pkgconfig
+ $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/{openssl,libcrypto,libssl}.pc $(STAGING_DIR)/usr/lib/pkgconfig/
+ $(SED) 's,^includedir=.*,includedir=$(STAGING_DIR)/usr/include,g' $(STAGING_DIR)/usr/lib/pkgconfig/{openssl,libcrypto,libssl}.pc
+ $(SED) 's,^libdir=.*,libdir=$(STAGING_DIR)/usr/lib,g' $(STAGING_DIR)/usr/lib/pkgconfig/{openssl,libcrypto,libssl}.pc
+ $(SED) 's,$(TARGET_LDFLAGS),,g' $(STAGING_DIR)/usr/lib/pkgconfig/{openssl,libcrypto,libssl}.pc
endef
define Build/UninstallDev
rm -rf $(STAGING_DIR)/usr/include/openssl \
- $(STAGING_DIR)/usr/lib/lib{crypto,ssl}.{a,so*}
+ $(STAGING_DIR)/usr/lib/lib{crypto,ssl}.{a,so*} \
+ $(STAGING_DIR)/usr/lib/pkgconfig/{openssl,libcrypto,libssl}.pc
endef
define Package/libopenssl/install