blob: 56a65af3aff503f2162ae5fb44aabb0d52c2d8ca (
plain)
1
2
3
4
5
6
7
8
9
10
|
podman run --rm -it debian:testing sh -c '
apt update -y &&
apt upgrade -y &&
apt install --no-install-recommends build-essential autoconf automake autopoint gettext libssl-dev m4 bison flex git ca-certificates pkg-config -y &&
git clone https://gitlab.com/fetchmail/fetchmail.git &&
cd fetchmail &&
autoreconf -svif &&
./configure -C &&
make -sj20 check &&
./fetchmail -V'
|