mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-25 07:16:17 +02:00
Merge pull request #10840 from obsidiansystems/libutil-pkg-config
Create and install a `nix-util.pc`
This commit is contained in:
commit
21be03b233
3 changed files with 13 additions and 1 deletions
|
@ -5,5 +5,6 @@ includedir=@includedir@
|
||||||
Name: Nix
|
Name: Nix
|
||||||
Description: Nix Package Manager
|
Description: Nix Package Manager
|
||||||
Version: @PACKAGE_VERSION@
|
Version: @PACKAGE_VERSION@
|
||||||
Libs: -L${libdir} -lnixstore -lnixutil
|
Requires: nix-util
|
||||||
|
Libs: -L${libdir} -lnixstore
|
||||||
Cflags: -I${includedir}/nix -std=c++2a
|
Cflags: -I${includedir}/nix -std=c++2a
|
||||||
|
|
|
@ -40,3 +40,5 @@ $(foreach i, $(wildcard $(d)/signature/*.hh), \
|
||||||
ifeq ($(HAVE_LIBCPUID), 1)
|
ifeq ($(HAVE_LIBCPUID), 1)
|
||||||
libutil_LDFLAGS += -lcpuid
|
libutil_LDFLAGS += -lcpuid
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
$(eval $(call install-file-in, $(buildprefix)$(d)/nix-util.pc, $(libdir)/pkgconfig, 0644))
|
||||||
|
|
9
src/libutil/nix-util.pc.in
Normal file
9
src/libutil/nix-util.pc.in
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
prefix=@prefix@
|
||||||
|
libdir=@libdir@
|
||||||
|
includedir=@includedir@
|
||||||
|
|
||||||
|
Name: Nix
|
||||||
|
Description: Nix Package Manager
|
||||||
|
Version: @PACKAGE_VERSION@
|
||||||
|
Libs: -L${libdir} -lnixutil
|
||||||
|
Cflags: -I${includedir}/nix -std=c++2a
|
Loading…
Reference in a new issue