mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-29 01:54:39 +08:00
* We really do not need them * Installing on readthedocs.org is not possible. * This reverts commitc2159a177c. * This reverts commit6cd3c6e796. * This reverts commit1cd7848dc4.
34 lines
569 B
Bash
Executable file
Vendored
34 lines
569 B
Bash
Executable file
Vendored
#!/bin/sh
|
|
|
|
set -e -x
|
|
|
|
# Update package lists
|
|
apt-get update
|
|
|
|
# Install dependencies
|
|
apt-get install -y \
|
|
gir1.2-pango-1.0 \
|
|
gettext \
|
|
git \
|
|
git-svn \
|
|
gnupg \
|
|
subversion \
|
|
postgresql-client \
|
|
pkg-config \
|
|
python3-dev \
|
|
libxml2-dev \
|
|
libacl1-dev \
|
|
libxmlsec1-dev \
|
|
libleptonica-dev \
|
|
libtesseract-dev \
|
|
libsasl2-dev \
|
|
libldap2-dev \
|
|
libssl-dev \
|
|
libffi-dev \
|
|
libenchant1c2a \
|
|
libgirepository1.0-dev \
|
|
libcairo-dev \
|
|
liblz4-dev \
|
|
gir1.2-pango-1.0 \
|
|
cython \
|
|
tesseract-ocr
|