# Get the tarball
cd
test -f installed/pandoc-3.6.3.tar.gz &&
mv -f installed/pandoc-3.6.3.tar.gz .
test ! -f pandoc-3.6.3.tar.gz &&
wget -O pandoc-3.6.3.tar.gz \
https://github.com/jgm/pandoc/archive/refs/tags/3.6.3.tar.gz
# Extract the source
mkdir -p -m 0700 ~/src
cd ~/src
tar xzvf ~/pandoc-3.6.3.tar.gz
cd pandoc-3.6.3
test $UID = 0 && chown -R root:root .
# Read ./README.md, ./INSTALL.md, and if upgrading ./changelog.md
# If you want to install it as root, become root
# All files will end up in ~/.stack
# Download the ghc compiler
stack setup
# Install pandoc
stack install pandoc-cli
# Become root
su
# Update your PATH to include ~/.local/bin
echo '#!/bin/sh' > /etc/profile.d/stack.sh
echo 'test -d "$HOME/.local/bin" && PATH=$HOME/.local/bin:$PATH' >> \
/etc/profile.d/stack.sh
chmod 755 /etc/profile.d/stack.sh
# Become your non-root self again
exit
# Save the tarball for later
cd
mkdir -p -m 0700 installed
rm -f installed/pandoc-*.tar.gz
mv -f pandoc-*.tar.gz installed/