dlfcn-win32: add pkg-config file

This commit is contained in:
Tony Theodore 2016-08-15 14:34:48 +10:00
parent aa5d954867
commit d24662444c
1 changed files with 9 additions and 0 deletions

View File

@ -22,4 +22,13 @@ define $(PKG)_BUILD
$(MAKE) -C '$(1)' -j '$(JOBS)'
$(MAKE) -C '$(1)' -j 1 install
$(MAKE) -C '$(1)' -j '$(JOBS)' test.exe testdll.dll
# create pkg-config file - mostly for psapi dependency
mkdir -p '$(PREFIX)/$(TARGET)/lib/pkgconfig'
(echo 'Name: $(PKG)'; \
echo 'Version: $($(PKG)_VERSION)'; \
echo 'Description: $(PKG)'; \
echo 'Libs: -ldl'; \
echo 'Libs.private: -lpsapi'; \
) > '$(PREFIX)/$(TARGET)/lib/pkgconfig/dlfcn.pc'
endef