ports

morpheus ports
git clone git://git.2f30.org/ports
Log | Files | Refs | LICENSE

commit 39814e270457ebeb5b8db853b38ce8f48fd98897
parent cc826bded53a2ddb7105266a46929626099aa515
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Wed, 11 Jun 2014 17:27:06 +0200

add mutt

Signed-off-by: Hiltjo Posthuma <hiltjo@codemadness.org>

Diffstat:
Amutt/checksums | 1+
Amutt/mkfile | 7+++++++
Amutt/mutt.mk | 22++++++++++++++++++++++
Amutt/v.mk | 1+
4 files changed, 31 insertions(+), 0 deletions(-)

diff --git a/mutt/checksums b/mutt/checksums @@ -0,0 +1 @@ +f1b4a7230253651857f61bd7215cce870a613012f613d4c907d401556083726c8ed7d429d57a8bf858c3b5b23683380d4c1494540d86ca80813e22cb6b95bc1e mutt-1.5.23.tar.gz diff --git a/mutt/mkfile b/mutt/mkfile @@ -0,0 +1,7 @@ +<$mkbuild/mk.3rdparty + +<v.mk +src = mutt-$v +#url = ftp://ftp.mutt.org/mutt/devel/mutt-$v.tar.gz +url = https://bitbucket.org/mutt/mutt/downloads/mutt-$v.tar.gz +mkfile = ../mutt.mk diff --git a/mutt/mutt.mk b/mutt/mutt.mk @@ -0,0 +1,22 @@ +TARG = mutt +DEPS = openssl ncurses + +INSTALL_MAN1 = `{ ls -1 doc/*.1} +INSTALL_BIN = mutt + +<$mkbuild/mk.common + +mutt:QV: + export CFLAGS="$CFLAGS $DEPS_CFLAGS" + export LDFLAGS="$LDFLAGS $DEPS_LDFLAGS" + CC="$CC" ./configure \ + --prefix="$prefix" \ + --mandir="$ROOT/share/man" \ + --disable-shared \ + --disable-nls \ + --disable-iconv \ + --with-ssl \ + --with-curses \ + --with-mailpath="/var/spool/mail" \ + --enable-static + make -j$nprocs diff --git a/mutt/v.mk b/mutt/v.mk @@ -0,0 +1 @@ +v = 1.5.23