mutt stable branch with some hacks
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add builds.sr.ht CI manifests

For Alpine Linux (musl libc), Debian (glibc), and FreeBSD.

authored by

Drew DeVault and committed by
Kevin McCarthy
70d879c4 ba7116d4

+103
+34
.builds/alpine.yml
··· 1 + image: alpine/edge 2 + packages: 3 + - autoconf 4 + - automake 5 + - cyrus-sasl-dev 6 + - gdbm-dev 7 + - gettext-dev 8 + - gpgme-dev 9 + - libidn2-dev 10 + - ncurses-dev 11 + - openssl-dev 12 + - perl 13 + sources: 14 + - https://git.sr.ht/~kevin8t8/mutt 15 + tasks: 16 + - configure: | 17 + cd mutt 18 + autoreconf -if 19 + ./configure \ 20 + --enable-gpgme \ 21 + --enable-pop \ 22 + --enable-imap \ 23 + --enable-smtp \ 24 + --enable-hcache \ 25 + --enable-sidebar \ 26 + --without-included-gettext \ 27 + --with-mailpath=/var/spool/mail \ 28 + --with-curses \ 29 + --with-ssl \ 30 + --with-sasl \ 31 + --with-idn2 32 + - build: | 33 + cd mutt 34 + make
+32
.builds/debian.yml
··· 1 + image: debian/stable 2 + packages: 3 + - autoconf 4 + - automake 5 + - gettext 6 + - libgdbm-dev 7 + - libgpgme-dev 8 + - libidn2-dev 9 + - libncurses-dev 10 + - libsasl2-dev 11 + - libssl-dev 12 + sources: 13 + - https://git.sr.ht/~kevin8t8/mutt 14 + tasks: 15 + - configure: | 16 + cd mutt 17 + autoreconf -if 18 + ./configure \ 19 + --enable-gpgme \ 20 + --enable-pop \ 21 + --enable-imap \ 22 + --enable-smtp \ 23 + --enable-hcache \ 24 + --enable-sidebar \ 25 + --without-included-gettext \ 26 + --with-mailpath=/var/spool/mail \ 27 + --with-curses \ 28 + --with-ssl \ 29 + --with-sasl 30 + - build: | 31 + cd mutt 32 + make
+37
.builds/freebsd.yml
··· 1 + image: freebsd/latest 2 + packages: 3 + - automake 4 + - autoconf 5 + - mime-support 6 + - urlview 7 + - indexinfo 8 + - gpgme 9 + - libgpg-error 10 + - libassuan 11 + - libidn2 12 + - libunistring 13 + - db5 14 + - libiconv 15 + - gettext-runtime 16 + sources: 17 + - https://git.sr.ht/~kevin8t8/mutt 18 + tasks: 19 + - configure: | 20 + cd mutt 21 + autoreconf -if 22 + ./configure \ 23 + --enable-gpgme \ 24 + --enable-pop \ 25 + --enable-imap \ 26 + --enable-smtp \ 27 + --enable-hcache \ 28 + --enable-sidebar \ 29 + --with-mailpath=/var/spool/mail \ 30 + --with-curses \ 31 + --with-ssl \ 32 + --without-sasl \ 33 + --with-libiconv-prefix=/usr/local \ 34 + --with-libintl-prefix=/usr/local 35 + - build: | 36 + cd mutt 37 + make