mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-25 22:47:59 +01:00
Made Vagrant's provisioning script install ImageMagick and run apt-get quietly.
This commit is contained in:
parent
fe22c9547e
commit
6219ee2e5b
1 changed files with 8 additions and 5 deletions
|
@ -1,10 +1,13 @@
|
|||
sudo apt-get update
|
||||
#!/usr/bin/env bash
|
||||
|
||||
echo "Installing tagging tools"
|
||||
sudo apt-get install -y AtomicParsley flac vorbis-tools
|
||||
echo "Running apt-get update..."
|
||||
sudo apt-get -qq update
|
||||
|
||||
echo "Installing ffmpeg dependencies"
|
||||
sudo apt-get install -y pkg-config yasm libfaac-dev libmp3lame-dev libvorbis-dev
|
||||
echo "Installing tagging tools..."
|
||||
sudo apt-get -qq install -y AtomicParsley flac vorbis-tools imagemagick
|
||||
|
||||
echo "Installing ffmpeg dependencies.."
|
||||
sudo apt-get -qq install -y pkg-config yasm libfaac-dev libmp3lame-dev libvorbis-dev
|
||||
|
||||
|
||||
if type ffmpeg &>/dev/null; then
|
||||
|
|
Loading…
Reference in a new issue