diff options
author | Rosen Penev <rosenp@gmail.com> | 2020-06-27 01:29:19 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-27 01:29:19 -0700 |
commit | e678c3a54db10b47aec2c4bbef5c99d24181d20b (patch) | |
tree | 02e374d974fc7240a9ea87647ae28ee4f73d10d4 | |
parent | 65af93279d217aef635bda80cd16dcc17c725ec6 (diff) | |
parent | ca1bbd228f15208e53455465dfd3487e9b7a5d4d (diff) |
Merge pull request #12622 from ejurgensen/libplist_2.2_pkgconfig
libplist: add missing pkgconfig files in libplist 2.2
-rw-r--r-- | libs/libplist/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libs/libplist/Makefile b/libs/libplist/Makefile index 5707fdb71..73595a77e 100644 --- a/libs/libplist/Makefile +++ b/libs/libplist/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libplist PKG_VERSION:=2.2.0 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=https://www.libimobiledevice.org/downloads @@ -92,7 +92,10 @@ define Build/InstallDev $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/libplist-2.0*.so* $(1)/usr/lib/ $(INSTALL_DIR) $(1)/usr/lib/pkgconfig - $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libplist*.pc $(1)/usr/lib/pkgconfig/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libplist++-2.0.pc $(1)/usr/lib/pkgconfig/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libplist-2.0.pc $(1)/usr/lib/pkgconfig/ + $(LN) libplist++-2.0.pc $(1)/usr/lib/pkgconfig/libplist++.pc + $(LN) libplist-2.0.pc $(1)/usr/lib/pkgconfig/libplist.pc endef define Package/libplist/install |