aboutsummaryrefslogtreecommitdiff
path: root/macos
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2022-09-22 14:49:02 -0700
committerJohn MacFarlane <[email protected]>2022-09-22 14:49:02 -0700
commit8ad64a831808d7d062279c9e0429a1b21a7075a9 (patch)
tree7f7a5338afc1a7109630d1d7176ed69d92eb8f7b /macos
parent22fa51ded17367a49114a1dc993402294579f7ea (diff)
Add pandoc-lua and man pages to releases.
Diffstat (limited to 'macos')
-rw-r--r--macos/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/macos/Makefile b/macos/Makefile
index b97b9965f..dbec1e982 100644
--- a/macos/Makefile
+++ b/macos/Makefile
@@ -13,13 +13,16 @@ signed.txt: $(DEST)
$(DEST)/bin/pandoc-server:
cd $(DEST)/bin && ln -s pandoc pandoc-server
-pandoc.pkg: $(DEST)/bin/pandoc-server signed.txt
+$(DEST)/bin/pandoc-lua:
+ cd $(DEST)/bin && ln -s pandoc pandoc-lua
+
+pandoc.pkg: $(DEST)/bin/pandoc-server $(DEST)/bin/pandoc-lua signed.txt
pkgbuild --root pandoc --identifier net.johnmacfarlane.pandoc --version $(VERSION) --ownership recommended $@
$(BASE)-macOS.pkg: pandoc.pkg
productbuild --distribution distribution.xml --resources Resources --package-path $< --version $(VERSION) --sign 'Developer ID Installer: John Macfarlane' $@
-$(BASE)-macOS.zip: $(DEST)/bin/pandoc-server signed.txt
+$(BASE)-macOS.zip: $(DEST)/bin/pandoc-server $(DEST)/bin/pandoc-lua signed.txt
mv $(DEST) $(BASE)
zip --symlinks -r $@ $(BASE)