summaryrefslogtreecommitdiffstats
path: root/.builds/alpine.yml
blob: 3b51a3bbf3f7c7faf10c4fdbb47e431e49122f0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
image: alpine/edge
packages:
- autoconf
- automake
- cyrus-sasl-dev
- gdbm-dev
- gettext-dev
- gpgme-dev
- libidn2-dev
- ncurses-dev
- openssl-dev
- perl
sources:
- https://git.sr.ht/~kevin8t8/mutt
tasks:
- configure: |
    cd mutt
    autoreconf -if
    ./configure \
        --enable-gpgme \
        --enable-pop \
        --enable-imap \
        --enable-smtp \
        --enable-hcache \
        --enable-sidebar \
        --without-included-gettext \
        --with-mailpath=/var/spool/mail \
        --with-curses \
        --with-ssl \
        --with-sasl \
        --with-idn2
- build: |
    cd mutt
    make