summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/icite/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'macros/latex/contrib/icite/Makefile')
-rw-r--r--macros/latex/contrib/icite/Makefile113
1 files changed, 113 insertions, 0 deletions
diff --git a/macros/latex/contrib/icite/Makefile b/macros/latex/contrib/icite/Makefile
new file mode 100644
index 0000000000..35bf3e4a63
--- /dev/null
+++ b/macros/latex/contrib/icite/Makefile
@@ -0,0 +1,113 @@
+NAME = icite
+SHELL = bash
+PWD = $(shell pwd)
+VERS = $(shell ltxfileinfo -v $(NAME).dtx|sed -e 's/^v//')
+LOCAL = $(shell kpsewhich --var-value TEXMFLOCAL)
+UTREE = $(shell kpsewhich --var-value TEXMFHOME)
+
+exts := md bib ins dtx html
+texsamples := $(basename $(wildcard $(PWD)/samples/*.tex))
+findopts := $(foreach ext,$(exts),-or -iname "*.$(ext)")
+
+
+# Look into this later
+# $(if $(wildcard $(PWD)/TMP/$(notdir $1).bcf),biber $(PWD)/TMP/$(notdir $1),)
+
+define dosamples
+ lualatex --output-dir=$(PWD)/TMP --shell-escape $1 >/dev/null
+ lualatex --output-dir=$(PWD)/TMP --shell-escape $1 >/dev/null
+ if [ -f $(PWD)/TMP/$(notdir $1)-primary.idx ]; \
+ then texindy -M $(PWD)/TMP/$(notdir $1).xdy $(PWD)/TMP/$(notdir $1)-primary.idx >/dev/null; fi
+ if [ -f $(PWD)/TMP/$(notdir $1).bcf ]; then biber $(PWD)/TMP/$(notdir $1) >/dev/null; fi
+ lualatex --output-dir=$(PWD)/TMP --shell-escape $1 >/dev/null
+ lualatex --output-dir=$(PWD)/TMP --shell-escape $1 >/dev/null
+endef
+
+all: $(NAME).pdf
+# test -e README.md || exit 0
+$(NAME).pdf: $(NAME).dtx
+ @ echo "Make documentation..."
+ lualatex --shell-escape --recorder --interaction=batchmode $(NAME).dtx >/dev/null
+ biber $(NAME) >/dev/null
+ lualatex --shell-escape --recorder --interaction=batchmode $(NAME).dtx >/dev/null
+ if [ -f $(NAME).glo ]; then makeindex -q -s gglo.ist -o $(NAME).gls $(NAME).glo; fi
+ if [ -f $(NAME).idx ]; then makeindex -q -s gind.ist -o $(NAME).ind $(NAME).idx; fi
+ if [ -f loccit.idx ]; then texindy -M icite.xdy loccit.idx >/dev/null; fi
+ if [ -f primary.idx ]; then texindy -M icite.xdy primary.idx >/dev/null; fi
+ lualatex --shell-escape --recorder --interaction=nonstopmode $(NAME).dtx > /dev/null
+ lualatex --shell-escape --recorder --interaction=nonstopmode $(NAME).dtx > /dev/null
+ @ echo "Make sample files..."
+ if [ ! -d $(PWD)/TMP ]; then mkdir $(PWD)/TMP; fi
+ cp $(PWD)/samples/*.bib $(PWD)/TMP
+ $(foreach file,$(texsamples), $(call dosamples, $(file)))
+ mv TMP/*.pdf samples/
+
+samples:
+ if [ ! -d $(PWD)/TMP ]; then mkdir $(PWD)/TMP; fi
+ cp $(PWD)/samples/*.bib $(PWD)/TMP
+ $(foreach file,$(texsamples), $(call dosamples, $(file)))
+ mv TMP/*.pdf samples/
+
+lualatex:
+ lualatex --shell-escape --recorder --interaction=batchmode $(NAME).dtx >/dev/null
+
+clean: lualatex
+ rm -f $(NAME).bib $(PWD)/TMP/*.bib
+ rm -rf .backup
+ find -iname "*~" -or -iname "*.pdf" | xargs rm -rf
+ find ./* -type f -iname "Makefile" $(findopts) > ls-R
+ find ./* -type f -iname "*.tex" | grep '/samples/' >> ls-R
+ rsync -avPr --files-from=ls-R . .backup
+ rm -rf *
+ cp -p -r .backup/* .
+ rm -rf .backup
+ pandoc -s README.md -o about.html
+
+distclean: clean uninst
+
+inst: uninst all
+ mkdir -p $(UTREE)/{tex,source,doc}/latex/$(NAME)
+ cp $(NAME).dtx $(UTREE)/source/latex/$(NAME)
+ cp $(NAME).sty $(UTREE)/tex/latex/$(NAME)
+ cp $(NAME).pdf $(UTREE)/doc/latex/$(NAME)
+
+local: uninst
+ lualatex $(NAME).ins
+ mkdir -p $(UTREE)/{tex,source,doc}/latex/$(NAME)
+ cp $(NAME).sty $(UTREE)/tex/latex/$(NAME)
+
+uninst:
+ rm -rf $(UTREE)/{tex,source,doc}/latex/$(NAME)
+
+install: all
+ sudo mkdir -p $(LOCAL)/{tex,source,doc}/latex/$(NAME)
+ sudo cp $(NAME).dtx $(LOCAL)/source/latex/$(NAME)
+ sudo cp $(NAME).sty $(LOCAL)/tex/latex/$(NAME)
+ sudo cp $(NAME).pdf $(LOCAL)/doc/latex/$(NAME)
+
+uninstall:
+ rm -rf $(LOCAL)/{tex,source,doc}/latex/$(NAME)
+
+zip: all
+ ln -sf . $(NAME)
+ zip -Drq $(PWD)/$(NAME)-$(VERS).zip $(NAME)/{samples,README.md,$(NAME).{pdf,dtx,ins}}
+ rm $(NAME)
+
+package: distclean all
+ mkdir $(NAME)/
+ cp Makefile README.md $(NAME).{dtx,ins,pdf} $(NAME)/
+ cp -r samples/ $(NAME)/
+ mkdir -p tex/latex/$(NAME)/
+ cp $(NAME).sty tex/latex/$(NAME)/
+ mkdir -p doc/latex/$(NAME)/
+ cp $(NAME).pdf doc/latex/$(NAME)/
+ cp -r samples/ doc/latex/$(NAME)/
+ mkdir -p source/latex/$(NAME)/
+ cp Makefile README.md $(NAME).{dtx,ins} source/latex/$(NAME)/
+ # zip -r $(NAME).tds.zip tex doc source
+ rm -rf tex/ source/ doc/
+ # tar czf $(NAME)-$(VERS).tar.gz $(NAME).tds.zip $(NAME)/
+ tar czf $(NAME)-$(VERS).tar.gz $(NAME)/
+ rm -rf $(NAME)/
+
+.PHONY: all lualatex clean distclean inst local uninst install uninstall zip package samples