Created
December 5, 2023 03:04
-
-
Save curiousercreative/ad14e8a72e7cda9c824b404d3aada641 to your computer and use it in GitHub Desktop.
Build and install ghostscript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env bash | |
wget https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs10021/ghostscript-10.02.1.tar.gz | |
tar -zxf ghostscript-10.02.1.tar.gz ghostscript-10.02.1/ | |
cd ghostscript-10.02.1/ | |
./configure | |
make -j56 | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment