libnl-tiny: install a pkg-config file
SVN-Revision: 15515
This commit is contained in:
parent
3750e2788d
commit
f981976ed1
2 changed files with 12 additions and 1 deletions
|
@ -36,9 +36,10 @@ define Build/Compile
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/InstallDev
|
define Build/InstallDev
|
||||||
$(INSTALL_DIR) $(1)/usr/lib $(1)/usr/include/libnl-tiny
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig $(1)/usr/include/libnl-tiny
|
||||||
$(CP) $(PKG_BUILD_DIR)/include/* $(1)/usr/include/libnl-tiny
|
$(CP) $(PKG_BUILD_DIR)/include/* $(1)/usr/include/libnl-tiny
|
||||||
$(CP) $(PKG_BUILD_DIR)/libnl-tiny.so $(1)/usr/lib/
|
$(CP) $(PKG_BUILD_DIR)/libnl-tiny.so $(1)/usr/lib/
|
||||||
|
$(CP) ./files/libnl-tiny.pc $(1)/usr/lib/pkgconfig
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/libnl-tiny/install
|
define Package/libnl-tiny/install
|
||||||
|
|
10
package/libnl-tiny/files/libnl-tiny.pc
Normal file
10
package/libnl-tiny/files/libnl-tiny.pc
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
prefix=/usr
|
||||||
|
exec_prefix=/usr
|
||||||
|
libdir=${exec_prefix}/lib
|
||||||
|
includedir=${prefix}/include/libnl-tiny
|
||||||
|
|
||||||
|
Name: libnl-tiny
|
||||||
|
Description: Convenience library for netlink sockets
|
||||||
|
Version: 2.0
|
||||||
|
Libs: -L${libdir} -lnl-tiny
|
||||||
|
Cflags:
|
Loading…
Reference in a new issue