Commit 9cd6b452 authored by Chris Thurber's avatar Chris Thurber Committed by GitHub

Merge pull request #2484 from uberhacker/update-buildessential-install

Update buildessential to add new dependencies
parents 57321e50 e96e547e
...@@ -188,9 +188,7 @@ echo lib >> .git/info/sparse-checkout ...@@ -188,9 +188,7 @@ echo lib >> .git/info/sparse-checkout
echo crew >> .git/info/sparse-checkout echo crew >> .git/info/sparse-checkout
git fetch origin master git fetch origin master
git reset --hard origin/master git reset --hard origin/master
yes | crew install buildessential yes | crew install buildessential less most
yes | crew install less
yes | crew install most
echo echo
echo "To set the default PAGER environment variable to be able to use less:" echo "To set the default PAGER environment variable to be able to use less:"
echo "echo \"export PAGER=$CREW_PREFIX/bin/less\" >> ~/.bashrc && . ~/.bashrc" echo "echo \"export PAGER=$CREW_PREFIX/bin/less\" >> ~/.bashrc && . ~/.bashrc"
......
...@@ -3,7 +3,7 @@ require 'package' ...@@ -3,7 +3,7 @@ require 'package'
class Buildessential < Package class Buildessential < Package
description 'A collection of tools essential to compile and build software.' description 'A collection of tools essential to compile and build software.'
homepage '' homepage ''
version '1.1' version '1.2'
is_fake is_fake
...@@ -12,6 +12,21 @@ class Buildessential < Package ...@@ -12,6 +12,21 @@ class Buildessential < Package
depends_on 'make' depends_on 'make'
depends_on 'pkgconfig' depends_on 'pkgconfig'
# compress man pages
depends_on 'compressdoc'
# build documentation
depends_on 'doxygen'
# configure scripts reference the file command
depends_on 'filecmd'
# essential dependency for many packages
depends_on 'readline'
# override the system version with sandbox mode enabled
depends_on 'sed'
# typically required library to compile source code using "./autogen.sh" # typically required library to compile source code using "./autogen.sh"
depends_on 'automake' depends_on 'automake'
depends_on 'libtool' depends_on 'libtool'
......
...@@ -4,15 +4,17 @@ binutils ...@@ -4,15 +4,17 @@ binutils
bison bison
cloog cloog
cmake cmake
compressdoc
diffutils diffutils
doxygen
expat expat
filecmd
flex flex
gawk gawk
gcc7 gcc7
gettext gettext
git git
glibc glibc
glibc223
gmp gmp
gnutls gnutls
icu4c icu4c
...@@ -39,10 +41,16 @@ openssl ...@@ -39,10 +41,16 @@ openssl
p11kit p11kit
patch patch
perl perl
perl_locale_messages
perl_text_unidecode
perl_unicode_eastasianwidth
perl_xml_parser perl_xml_parser
pkgconfig pkgconfig
readline
ruby ruby
sed
slang slang
texinfo
trousers trousers
unzip unzip
util_macros util_macros
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment