|
@ -2,38 +2,46 @@ |
|
|
set -e -u |
|
|
set -e -u |
|
|
|
|
|
|
|
|
PACKAGES="" |
|
|
PACKAGES="" |
|
|
PACKAGES+=" apache-ant" # Used by apksigner. |
|
|
PACKAGES+=" patch" |
|
|
PACKAGES+=" asciidoc" |
|
|
PACKAGES+=" asciidoc" |
|
|
|
|
|
PACKAGES+=" asciidoctor" # Used by weechat for man pages. |
|
|
PACKAGES+=" automake" |
|
|
PACKAGES+=" automake" |
|
|
PACKAGES+=" bison" |
|
|
PACKAGES+=" bison" |
|
|
PACKAGES+=" clang" # Used by golang, useful to have same compiler building. |
|
|
PACKAGES+=" clang" # Used by golang, useful to have same compiler building. |
|
|
PACKAGES+=" curl" # Used for fetching sources. |
|
|
PACKAGES+=" curl" # Used for fetching sources. |
|
|
PACKAGES+=" ed" # Used by bc |
|
|
PACKAGES+=" ed" # Used by bc. |
|
|
PACKAGES+=" flex" |
|
|
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+=" git" # Used by the neovim build. |
|
|
|
|
|
PACKAGES+=" gperf" # Used by the fontconfig build. |
|
|
PACKAGES+=" help2man" |
|
|
PACKAGES+=" help2man" |
|
|
PACKAGES+=" intltool" # Used by qalc build. |
|
|
PACKAGES+=" intltool" # Used by qalc build. |
|
|
PACKAGES+=" glib2" # Provides 'glib-genmarshal' which the glib build uses. |
|
|
PACKAGES+=" glib2" # Provides 'glib-genmarshal' which the glib build uses. |
|
|
PACKAGES+=" libtool" |
|
|
PACKAGES+=" libtool" |
|
|
#PACKAGES+=" ncurses5-compat-libs" # Used by mariadb for host build part. - only available in aur |
|
|
|
|
|
PACKAGES+=" lzip" |
|
|
PACKAGES+=" lzip" |
|
|
PACKAGES+=" python" |
|
|
PACKAGES+=" python" |
|
|
|
|
|
PACKAGES+=" python2" |
|
|
PACKAGES+=" tar" |
|
|
PACKAGES+=" tar" |
|
|
PACKAGES+=" unzip" |
|
|
PACKAGES+=" unzip" |
|
|
PACKAGES+=" m4" |
|
|
PACKAGES+=" m4" |
|
|
PACKAGES+=" jre8-openjdk-headless" # Used for android-sdk. |
|
|
PACKAGES+=" pkgconf" |
|
|
PACKAGES+=" pkg-config" |
|
|
|
|
|
PACKAGES+=" python-docutils" # For rst2man, used by mpv. |
|
|
PACKAGES+=" python-docutils" # For rst2man, used by mpv. |
|
|
PACKAGES+=" python-setuptools" # Needed by at least asciinema. |
|
|
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+=" scons" |
|
|
PACKAGES+=" texinfo" |
|
|
PACKAGES+=" texinfo" |
|
|
PACKAGES+=" xmlto" |
|
|
PACKAGES+=" xmlto" |
|
|
#PACKAGES+=" xutils-dev" # Provides 'makedepend' which the openssl build uses. |
|
|
PACKAGES+=" expat" # Needed by ghostscript. |
|
|
PACKAGES+=" expat" # Needed by ghostscript |
|
|
PACKAGES+=" libjpeg-turbo" # Needed by ghostscript. |
|
|
PACKAGES+=" libjpeg-turbo" # Needed by ghostscript |
|
|
PACKAGES+=" gawk" # Needed by apr-util. |
|
|
PACKAGES+=" patch" |
|
|
PACKAGES+=" openssl" # Needed to build rust. |
|
|
PACKAGES+=" gperf" # Needed by fontconfig |
|
|
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 |
|
|
sudo pacman -Syq --noconfirm $PACKAGES |
|
|
|
|
|
|
|
|