38 lines
1.2 KiB
Text
38 lines
1.2 KiB
Text
# Template file for 'mutt-kz'
|
|
pkgname=mutt-kz
|
|
version=20140319
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--enable-notmuch --enable-pop --enable-imap --enable-smtp
|
|
--enable-gpgme --with-idn --with-ssl --with-gpgme-prefix=${XBPS_CROSS_BASE}/usr
|
|
--with-gdbm=${XBPS_CROSS_BASE}/usr mutt_cv_regex_broken=no"
|
|
hostmakedepends="perl pkg-config libidn-devel automake"
|
|
makedepends="ncurses-devel openssl-devel libidn-devel gpgme-devel mime-types libnotmuch-devel"
|
|
depends="notmuch mime-types"
|
|
conf_files="/etc/Muttrc"
|
|
conflicts="mutt>=0"
|
|
short_desc="mutt fork with notmuch support and another improvements"
|
|
maintainer="pancake <pancake@nopcode.org>"
|
|
license="GPL-3"
|
|
homepage="https://github.com/karelzak/mutt-kz/"
|
|
|
|
do_fetch() {
|
|
# latest commit as of ${version}
|
|
_githead=bf395dc5784f3e83552acab5c6b68b6b6385fabd
|
|
|
|
git clone git://github.com/karelzak/mutt-kz.git ${pkgname}-${version}
|
|
cd ${pkgname}-${version}
|
|
git reset --hard ${_githead}
|
|
}
|
|
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
}
|
|
|
|
post_install() {
|
|
# provided by mime-types.
|
|
rm ${DESTDIR}/etc/mime.*
|
|
# move dist to examples dir.
|
|
vmkdir usr/share/examples/${pkgname}
|
|
mv ${DESTDIR}/etc/Muttrc.dist ${DESTDIR}/usr/share/examples/${pkgname}
|
|
}
|