用流浪汉安装ghostscript

时间:2013-12-27 10:13:12

标签: vagrant ghostscript

我想在创建我的流浪汉环境时安装ghostscript,但我不知道如何实现这一点。我的配置脚本如下所示:

#!/usr/bin/env bash

sudo apt-get update

sudo apt-get install -y python-software-properties

sudo add-apt-repository -y ppa:ondrej/php5

sudo apt-get update

sudo apt-get install -y wget php5 apache2

# Apache stuff
sudo a2enmod rewrite

rm -rf /var/www

ln -fs /vagrant /var/www

sudo service apache2 restart

1 个答案:

答案 0 :(得分:0)

在shell配置脚本中,您必须定义以下命令

wget http://downloads.ghostscript.com/public/ghostscript-9.10.tar.bz2

tar xjf ghostscript-9.10.tar.bz2 

cd ghostscript-9.10

rm -rf zlib && ./configure --prefix=/usr --disable-compile-inits \ --enable-dynamic --with-system-libtiff && make

make so

su root

make install

gs -v

这基本上是做什么的:

  1. 下载软件包
  2. 提取内容
  3. 编译ghostscript
  4. 安装ghostscript
  5. 检查是否正确安装
  6. 以上说明必须按照您的方式安装