marker-io / scripts /install /ghostscript_install.sh
Ritvik19's picture
Add all files and directories
c8a32e7
raw
history blame
281 Bytes
#!/bin/bash
wget https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs10012/ghostscript-10.01.2.tar.gz
tar -xvf ghostscript-10.01.2.tar.gz
cd ghostscript-10.01.2
./configure
sudo make install
cd ..
sudo rm -rf ghostscript-10.01.2
rm ghostscript-10.01.2.tar.gz