From 74832cbea85925986830d5202c529f454696f140 Mon Sep 17 00:00:00 2001 From: Leonid Pliushch Date: Mon, 3 Jun 2019 23:24:34 +0300 Subject: [PATCH] update setup-archlinux.sh --- scripts/setup-archlinux.sh | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/scripts/setup-archlinux.sh b/scripts/setup-archlinux.sh index 63f45d5e1b..2152273249 100755 --- a/scripts/setup-archlinux.sh +++ b/scripts/setup-archlinux.sh @@ -2,38 +2,46 @@ set -e -u PACKAGES="" -PACKAGES+=" apache-ant" # Used by apksigner. +PACKAGES+=" patch" PACKAGES+=" asciidoc" +PACKAGES+=" asciidoctor" # Used by weechat for man pages. PACKAGES+=" automake" PACKAGES+=" bison" PACKAGES+=" clang" # Used by golang, useful to have same compiler building. PACKAGES+=" curl" # Used for fetching sources. -PACKAGES+=" ed" # Used by bc +PACKAGES+=" ed" # Used by bc. PACKAGES+=" flex" -PACKAGES+=" gettext" # Provides 'msgfmt' which the apt build uses. +PACKAGES+=" gcc" # Host C/C++ compiler. +PACKAGES+=" gettext" # Provides 'msgfmt'. PACKAGES+=" git" # Used by the neovim build. +PACKAGES+=" gperf" # Used by the fontconfig build. PACKAGES+=" help2man" PACKAGES+=" intltool" # Used by qalc build. PACKAGES+=" glib2" # Provides 'glib-genmarshal' which the glib build uses. PACKAGES+=" libtool" -#PACKAGES+=" ncurses5-compat-libs" # Used by mariadb for host build part. - only available in aur PACKAGES+=" lzip" PACKAGES+=" python" +PACKAGES+=" python2" PACKAGES+=" tar" PACKAGES+=" unzip" PACKAGES+=" m4" -PACKAGES+=" jre8-openjdk-headless" # Used for android-sdk. -PACKAGES+=" pkg-config" +PACKAGES+=" pkgconf" PACKAGES+=" python-docutils" # For rst2man, used by mpv. PACKAGES+=" python-setuptools" # Needed by at least asciinema. +PACKAGES+=" python-sphinx" # Needed by notmuch man page generation. +PACKAGES+=" ruby" # Needed to build ruby. PACKAGES+=" scons" PACKAGES+=" texinfo" PACKAGES+=" xmlto" -#PACKAGES+=" xutils-dev" # Provides 'makedepend' which the openssl build uses. -PACKAGES+=" expat" # Needed by ghostscript -PACKAGES+=" libjpeg-turbo" # Needed by ghostscript -PACKAGES+=" patch" -PACKAGES+=" gperf" # Needed by fontconfig +PACKAGES+=" expat" # Needed by ghostscript. +PACKAGES+=" libjpeg-turbo" # Needed by ghostscript. +PACKAGES+=" gawk" # Needed by apr-util. +PACKAGES+=" openssl" # Needed to build rust. +PACKAGES+=" gnupg" # Needed to verify downloaded debs. +PACKAGES+=" jq" # Needed by bintray uploader script. +PACKAGES+=" lua" # Needed to build luarocks package. +PACKAGES+=" python-recommonmark" # Needed for LLVM-8 documentation. +PACKAGES+=" jre8-openjdk-headless" sudo pacman -Syq --noconfirm $PACKAGES