dotfiles/recipes/pandoc

23 lines
574 B
Text
Raw Normal View History

2018-02-22 16:27:37 +00:00
#!/bin/bash
2018-04-12 18:07:33 +00:00
# Description: Document conversion tool
2018-02-27 05:15:14 +00:00
set -e
2018-02-22 16:27:37 +00:00
case $_PLATFORM in
darwin)
_recipe brew
_brew pandoc
;;
2021-02-05 00:05:51 +00:00
arch)
_recipe _arch
_pacman pandoc
;;
debian)
if ! dpkg -s pandoc >/dev/null 2>&1; then
__pandoc_tmp="$(mktemp)"
2020-07-19 06:03:06 +00:00
_run "Download pandoc" curl -L -o "$__pandoc_tmp" "https://github.com/jgm/pandoc/releases/download/2.10/pandoc-2.10-1-amd64.deb"
_run "Install pandoc" sudo dpkg -i "$__pandoc_tmp"
rm -f "$__pandoc_tmp"
fi
;;
esac