diff options
author | Louie Shprung <lshprung@tutanota.com> | 2024-08-30 18:37:12 -0400 |
---|---|---|
committer | Louie Shprung <lshprung@tutanota.com> | 2024-08-30 18:37:12 -0400 |
commit | be1f2c2bce1ba5e81ce14e9cb82c0d2fb251b60e (patch) | |
tree | 00d1741993852f4732dbcaaab208d71c17bd313e /nsis/Makefile.am | |
parent | 49d7691f6fb374ae2f06f46ead21d53c14bc64b9 (diff) |
Option to install lua-filesystem in nsis installer
Diffstat (limited to 'nsis/Makefile.am')
-rw-r--r-- | nsis/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nsis/Makefile.am b/nsis/Makefile.am index 8eead42..c27b3fd 100644 --- a/nsis/Makefile.am +++ b/nsis/Makefile.am @@ -1,12 +1,13 @@ EXTRA_DIST = installer.nsi.in -CLEANFILES = *Setup.exe deps/* +CLEANFILES = *Setup.exe deps/* deps_luarocks/* SEARCHPATH=$$PATH DLLS = $(shell ntldd -R ../src/$(PACKAGE_NAME).exe | sed 's/.*=> //g' | grep -v "not found" | sed 's/ (.*)$$//g' | sed 's/\\/\\\\/g' | xargs cygpath -u | grep "$$MINGW_PREFIX") .PHONY: installer installer: installer.nsi - mkdir -p deps + mkdir -p deps deps_luarocks for file in $(DLLS); do install "$$file" "deps/$$(basename "$$file")"; done + cp /"$$(pacman -Fl $$MINGW_PACKAGE_PREFIX-lua-luafilesystem | grep -io $${MSYSTEM}.* | grep lfs.dll)" deps_luarocks/ makensis installer.nsi |