63 lines
1.9 KiB
Text
63 lines
1.9 KiB
Text
# Template file for 'mailx'
|
|
pkgname=mailx
|
|
version=12.5
|
|
revision=2
|
|
patch_args="-Np1"
|
|
wrksrc=mailx-${version}
|
|
makedepends="openssl-devel mit-krb5-devel"
|
|
short_desc="Feature-rich BSD mail(1)"
|
|
homepage="http://heirloom.sourceforge.net/mailx.html"
|
|
license="Custom"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
distfiles="http://pkgs.fedoraproject.org/repo/pkgs/mailx/mailx-12.5.tar.xz/836bf1da322d2d1f78b7056c2b3b2304/${pkgname}-${version}.tar.xz"
|
|
checksum=1b8136fb2466adeaf71a5e3c65db9fa1a967f1f6469ff689c2cf06e21f638823
|
|
long_desc="
|
|
Mailx is an enhanced mail command, which provides the functionality
|
|
of the POSIX mailx command, as well as SysV mail and Berkeley Mail
|
|
(from which it is derived).
|
|
|
|
Additionally to the POSIX features, mailx can work with Maildir/ e-mail
|
|
storage format (as well as mailboxes), supports IMAP, POP3 and SMTP
|
|
procotols (including over SSL) to operate with remote hosts, handles mime
|
|
types and different charsets. There are a lot of other useful features,
|
|
see mailx(1).
|
|
|
|
And as its ancient analogues, mailx can be used as a mail script language,
|
|
both for sending and receiving mail.
|
|
|
|
Besides the "mailx" command, this package provides "mail" and "Mail"
|
|
(which should be compatible with its predecessors from the mailx-8.x source),
|
|
as well as "nail" (the initial name of this project)."
|
|
|
|
disable_parallel_build=yes
|
|
|
|
do_build() {
|
|
echo PREFIX=/usr \
|
|
BINDIR=/bin \
|
|
MANDIR=/usr/share/man \
|
|
SYSCONFDIR=/etc \
|
|
MAILRC=/etc/mail.rc \
|
|
MAILSPOOL=/var/spool/mail \
|
|
UCBINSTALL=install \
|
|
> ${wrksrc}/makeflags
|
|
|
|
make $(cat makeflags) CFLAGS="${CFLAGS} -D_GNU_SOURCE" \
|
|
IPv6=-DHAVE_IPv6_FUNCS
|
|
}
|
|
|
|
do_install() {
|
|
make DESTDIR=${DESTDIR} $(cat makeflags) install
|
|
|
|
ln -s mailx ${DESTDIR}/bin/mail
|
|
ln -s mailx ${DESTDIR}/bin/Mail
|
|
ln -s mailx.1 ${DESTDIR}/usr/share/man/man1/mail.1
|
|
ln -s mailx.1 ${DESTDIR}/usr/share/man/man1/Mail.1
|
|
}
|
|
|
|
mailx_package() {
|
|
conf_files="/etc/mail.rc"
|
|
pkg_install() {
|
|
vmove etc
|
|
vmove usr
|
|
}
|
|
}
|