Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ubuntu Groovy compatability #5

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
use correct dependency
  • Loading branch information
Rudi Horn committed Jan 28, 2021
commit e2038cc66317efbc2df61953b0a53220f7929feb
4 changes: 2 additions & 2 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ To fetch, build and install particular library run:

Assuming host machine is `Ubuntu 18.04` or `Debian Stretch`.

On host machine run:
Ensure lxc is initialized (otherwise run `lxc init`). On host machine run:
```
lxc launch images:debian/stretch cyrusimap-build
lxc exec cyrusimap-build bash
Expand All @@ -45,7 +45,7 @@ Inside container:
apt-get install git -y
cd /usr/src
git clone https://github.com/cyrusimap/cyruslibs.git
./install-dependencies.sh
./install-dependencies-debian.sh
./build.sh
```

Expand Down
2 changes: 1 addition & 1 deletion install-dependencies-ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ JANSSON_DEPS="zlib1g zlib1g-dev libglib2.0-dev"
XAPIAN_DEPS="graphviz doxygen python3-docutils help2man libmagic-dev"

# Libwslay dependencies
LIBWSLAY_DEPS="sphinx-doc"
LIBWSLAY_DEPS="sphinx-common"

apt-get install -y ${BUILD_ENV_DEPS} ${JANSSON_DEPS} ${XAPIAN_DEPS} ${LIBWSLAY_DEPS}