Juergen Daubert
ca52b5e41f
the orginal Heirloom mailx, formerly nail, is unmaintained, but Steffen Nurpmeso has created a fork called s-nail [1] and has added a lot of fixes to the mailx codebase. After using that for several months, I got the feeling that we can and should use that fork for our mailx port. [1] http://sdaoden.users.sourceforge.net/code.html
30 lines
749 B
Plaintext
30 lines
749 B
Plaintext
# Description: Replacement for Berkeley Mail and System V mailx command
|
|
# URL: http://nail.sourceforge.net/
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Depends on: openssl
|
|
|
|
name=mailx
|
|
version=14.3.2
|
|
release=1
|
|
source=(http://downloads.sourceforge.net/project/s-nail/s-nail-${version//./_}.tar.gz)
|
|
|
|
build() {
|
|
cd s-nail-$version
|
|
|
|
# Fix version string
|
|
sed -r -e 's/s-nail-(.+)/\1/' -i version.c
|
|
|
|
make install \
|
|
NAIL=mailx \
|
|
SID='' \
|
|
CFLAGS="$CFLAGS" \
|
|
PREFIX=/usr \
|
|
SYSCONFRC=/usr/etc/mailx.rc \
|
|
MAILSPOOL=/var/spool/mail \
|
|
DESTDIR=$PKG
|
|
|
|
ln -s mailx $PKG/usr/bin/Mail
|
|
ln -s mailx $PKG/usr/bin/mail
|
|
ln -s mailx.1 $PKG/usr/man/man1/mail.1
|
|
}
|