From 095d12cd35f63b65c657e41ad6563589644a270e Mon Sep 17 00:00:00 2001 From: Tom Levy Date: Thu, 16 May 2024 00:59:08 +1200 Subject: [PATCH] Remove nokogiri dependency packages (#249) As of Nokogiri 1.6, libxml2 and libxslt are bundled with Nokogiri [1], so we don't need to install the header files. [1] https://github.com/sparklemotion/nokogiri/blob/v1.6.8.1/CHANGELOG.rdoc#label-1.6.0.rc1+-2F+2013-04-14 --- script/install.bash | 2 -- script/install/nokogiri.bash | 7 ------- 2 files changed, 9 deletions(-) delete mode 100644 script/install/nokogiri.bash diff --git a/script/install.bash b/script/install.bash index 9dedd570..029449dc 100755 --- a/script/install.bash +++ b/script/install.bash @@ -40,8 +40,6 @@ bash script/install/nztrain.bash || exit 1 # fix files & directory structure bash script/install/bundler.bash || exit 1 -bash script/install/nokogiri.bash || exit 1 # nokogiri dependencies - bash script/install/jdk.bash || exit 1 # required by yui-compressor sudo bash script/install/isolate.bash || exit 1 # install isolate diff --git a/script/install/nokogiri.bash b/script/install/nokogiri.bash deleted file mode 100644 index 0934922b..00000000 --- a/script/install/nokogiri.bash +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env bash - -cmd="sudo apt-get install libxslt-dev libxml2-dev" - -echo "$ $cmd" -$cmd -