diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2024-03-12 15:53:31 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-03-12 15:53:57 +0100 |
commit | 87771fe7d8e47eaedb05f4028940d94a044dc16c (patch) | |
tree | 482218309683603a395e7a9a41877fa7cc24b40e /package | |
parent | e594fdb0ac2c271c501b36a59bfd6c0ac7be9b65 (diff) |
pkgconf: install libs, reported by Kevin
Diffstat (limited to 'package')
-rw-r--r-- | package/pkgconf/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/package/pkgconf/Makefile b/package/pkgconf/Makefile index cebfeb44d..77dbba517 100644 --- a/package/pkgconf/Makefile +++ b/package/pkgconf/Makefile @@ -5,7 +5,7 @@ include $(ADK_TOPDIR)/rules.mk PKG_NAME:= pkgconf PKG_VERSION:= 1.1.0 -PKG_RELEASE:= 1 +PKG_RELEASE:= 2 PKG_HASH:= 5f1ef65d73a880fa5e7012102a17f7b32010e5e46139aed85851a541ba828a63 PKG_DESCR:= smart pkg-config replacement PKG_SECTION:= dev/tools @@ -29,6 +29,9 @@ endif (cd $(STAGING_HOST_DIR)/usr/bin && ln -sf pkg-config $(GNU_TARGET_NAME)-pkg-config) pkgconf-install: + $(INSTALL_DIR) $(IDIR_PKGCONF)/usr/lib + $(CP) $(WRKINST)/usr/lib/libpkgconf*so* \ + $(IDIR_PKGCONF)/usr/lib $(INSTALL_DIR) $(IDIR_PKGCONF)/usr/bin $(INSTALL_BIN) $(WRKINST)/usr/bin/pkgconf \ $(IDIR_PKGCONF)/usr/bin |