# On linux systems:
./rdo init default
# On non-linux systems:
./rdo init machine
./rdo bashInitialize the environment and start a custom bash session.
All commands assume you are working within the custom bash session.
rdo git cloneClones the git repositories.
# This will fail when attempting to build libtorrent due to missing autoconf scripts.
rdo build all
docker run --rm -it --mount "type=bind,source=${PWD}/data,target=/data/" rdo/build/rtorrent/compiler:alpine-3 /bin/bashWhile in the docker container, run the following:
cd /data/libtorrent
libtoolize
aclocal -I scripts
autoconf -i
autoheader
automake --add-missing
cd /data/rtorrent
libtoolize
aclocal -I scripts
autoconf -i
autoheader
automake --add-missingrdo build allrdo batch tests/ci-allmake maintainer-clean
autoreconf --force --install