35 lines
1.3 KiB
Bash
35 lines
1.3 KiB
Bash
# Template file for 'mutt'
|
|
pkgname=mutt
|
|
version=1.12.2
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--enable-pop --enable-imap --enable-smtp --enable-hcache
|
|
--enable-gpgme --with-regex --with-idn2 --with-ssl --with-sasl --enable-sidebar
|
|
--with-gpgme-prefix=${XBPS_CROSS_BASE}/usr --sysconfdir=/etc/$pkgname
|
|
--with-gdbm=${XBPS_CROSS_BASE}/usr mutt_cv_regex_broken=no"
|
|
conf_files="/etc/${pkgname}/Muttrc"
|
|
hostmakedepends="libidn2-devel perl pkg-config"
|
|
makedepends="gdbm-devel gpgme-devel libidn2-devel libressl-devel libsasl-devel
|
|
ncurses-devel"
|
|
depends="cyrus-sasl-modules mime-types"
|
|
short_desc="Mutt Mail Client"
|
|
maintainer="Jan S. <jan.schreib@gmail.com>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="http://www.mutt.org"
|
|
changelog="http://mutt.org/relnotes/1.12"
|
|
distfiles="http://ftp.mutt.org/pub/mutt/${pkgname}-${version}.tar.gz"
|
|
checksum=bc42750ce8237742b9382f2148fc547a8d8601aa4a7cd28c55fe7ca045196882
|
|
|
|
pre_build() {
|
|
make CC="$BUILD_CC" CFLAGS="$BUILD_CFLAGS -fPIC" CPPFLAGS= mutt_md5
|
|
make CC="$BUILD_CC" CFLAGS="$BUILD_CFLAGS -fPIC" CPPFLAGS= -C doc
|
|
}
|
|
|
|
post_install() {
|
|
# provided by mime-types
|
|
rm "${DESTDIR}"/etc/$pkgname/mime.*
|
|
ln -s /etc/mime.types "${DESTDIR}/etc/${pkgname}/mime.types"
|
|
# move dist to examples dir
|
|
vsconf contrib/gpg.rc Muttrc.gpg.dist
|
|
mv "${DESTDIR}/etc/$pkgname/Muttrc.dist" "${DESTDIR}/usr/share/examples/${pkgname}"
|
|
}
|