diff --git a/srcpkgs/mutt-kz/template b/srcpkgs/mutt-kz/template index c803c6f68c..60cf297fa3 100644 --- a/srcpkgs/mutt-kz/template +++ b/srcpkgs/mutt-kz/template @@ -1,26 +1,38 @@ # Template file for 'mutt-kz' pkgname=mutt-kz -version=20140102 -revision=2 +version=20140128 +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" +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 " license="GPL-3" homepage="https://github.com/karelzak/mutt-kz/" do_fetch() { - _githead=be196028c755d3ffff184e9781ac933fbacbd562 + # latest commit as of ${version} + _githead=be196028c755d3ffff184e9781ac933fbacbd562 + git clone git://github.com/karelzak/mutt-kz.git ${pkgname}-${version} - cd ${pkgname}-${version} ; git reset --hard ${_githead} + 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} +}