pidgin/builders

Make the release-2.x.y builds look more like the default ones so the ci builds are easier to deal with
FROM debian:buster-slim
ENV DISTRO=debian
ENV VERSION=buster
ENV ARCH=amd64
RUN set -ex && \
echo deb-src http://httpredir.debian.org/debian buster main | tee -a /etc/apt/sources.list && \
apt-get update && \
apt-get build-dep -y pidgin && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
RUN set -ex && \
apt-get update && \
apt-get install -y \
mercurial automake autoconf libtool gtk-doc-tools curl ca-certificates meson && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
COPY simple/build.sh /usr/local/bin/build.sh
CMD ["build.sh"]