2013-11-25 16:38:33 +00:00
|
|
|
nix_perl_sources := \
|
|
|
|
$(d)/lib/Nix/Store.pm \
|
|
|
|
$(d)/lib/Nix/Manifest.pm \
|
|
|
|
$(d)/lib/Nix/GeneratePatches.pm \
|
|
|
|
$(d)/lib/Nix/SSH.pm \
|
|
|
|
$(d)/lib/Nix/CopyClosure.pm \
|
|
|
|
$(d)/lib/Nix/Config.pm.in \
|
2015-02-04 15:43:32 +00:00
|
|
|
$(d)/lib/Nix/Utils.pm
|
2013-11-25 16:38:33 +00:00
|
|
|
|
|
|
|
nix_perl_modules := $(nix_perl_sources:.in=)
|
|
|
|
|
|
|
|
$(foreach x, $(nix_perl_modules), $(eval $(call install-data-in, $(x), $(perllibdir)/Nix)))
|
|
|
|
|
|
|
|
ifeq ($(perlbindings), yes)
|
|
|
|
|
|
|
|
$(d)/lib/Nix/Store.cc: $(d)/lib/Nix/Store.xs
|
2014-02-01 13:28:31 +00:00
|
|
|
$(trace-gen) xsubpp $^ -output $@
|
2013-11-25 16:38:33 +00:00
|
|
|
|
2014-02-01 11:23:14 +00:00
|
|
|
libraries += Store
|
2013-11-25 16:38:33 +00:00
|
|
|
|
|
|
|
Store_DIR := $(d)/lib/Nix
|
|
|
|
|
2014-01-09 15:53:47 +00:00
|
|
|
Store_SOURCES := $(Store_DIR)/Store.cc
|
2013-11-25 16:38:33 +00:00
|
|
|
|
|
|
|
Store_CXXFLAGS = \
|
|
|
|
-I$(shell $(perl) -e 'use Config; print $$Config{archlibexp};')/CORE \
|
2014-08-23 10:00:46 +00:00
|
|
|
-D_FILE_OFFSET_BITS=64 -Wno-unused-variable -Wno-literal-suffix -Wno-reserved-user-defined-literal
|
2013-11-25 16:38:33 +00:00
|
|
|
|
2015-02-04 15:43:32 +00:00
|
|
|
Store_LIBS = libstore libutil
|
|
|
|
|
|
|
|
Store_LDFLAGS := $(SODIUM_LIBS)
|
|
|
|
|
2014-12-09 11:25:25 +00:00
|
|
|
ifeq (CYGWIN,$(findstring CYGWIN,$(OS)))
|
|
|
|
archlib = $(shell perl -E 'use Config; print $$Config{archlib};')
|
|
|
|
libperl = $(shell perl -E 'use Config; print $$Config{libperl};')
|
2015-02-04 15:43:32 +00:00
|
|
|
Store_LDFLAGS += $(shell find ${archlib} -name ${libperl})
|
2014-12-09 11:25:25 +00:00
|
|
|
endif
|
|
|
|
|
2013-11-25 16:38:33 +00:00
|
|
|
Store_ALLOW_UNDEFINED = 1
|
|
|
|
|
|
|
|
Store_FORCE_INSTALL = 1
|
|
|
|
|
|
|
|
Store_INSTALL_DIR = $(perllibdir)/auto/Nix/Store
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2014-02-01 11:23:14 +00:00
|
|
|
clean-files += $(d)/lib/Nix/Config.pm $(d)/lib/Nix/Store.cc
|