diff options
-rw-r--r-- | mailx/.footprint | 11 | ||||
-rw-r--r-- | mailx/.md5sum | 1 | ||||
-rw-r--r-- | mailx/Pkgfile | 29 |
3 files changed, 41 insertions, 0 deletions
diff --git a/mailx/.footprint b/mailx/.footprint new file mode 100644 index 000000000..87a0d49c6 --- /dev/null +++ b/mailx/.footprint @@ -0,0 +1,11 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +lrwxrwxrwx root/root usr/bin/Mail -> mailx +lrwxrwxrwx root/root usr/bin/mail -> mailx +-rwxr-xr-x root/root usr/bin/mailx +drwxr-xr-x root/root usr/etc/ +-rw-r--r-- root/root usr/etc/mailx.rc +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +lrwxrwxrwx root/root usr/man/man1/mail.1.gz -> mailx.1.gz +-rw-r--r-- root/root usr/man/man1/mailx.1.gz diff --git a/mailx/.md5sum b/mailx/.md5sum new file mode 100644 index 000000000..29d379abc --- /dev/null +++ b/mailx/.md5sum @@ -0,0 +1 @@ +67e8236a73f8a2d85c45cf8a2bdf7af1 mailx-12.0.tar.bz2 diff --git a/mailx/Pkgfile b/mailx/Pkgfile new file mode 100644 index 000000000..c3bdb4639 --- /dev/null +++ b/mailx/Pkgfile @@ -0,0 +1,29 @@ +# Description: Replacement for Berkeley Mail and System V mailx command +# URL: http://nail.sourceforge.net/ +# Maintainer: Jürgen Daubert, juergen dot daubert at t-online dot de +# Depends on: openssl + +name=mailx +version=12.0 +release=1 +source=(http://dl.sourceforge.net/sourceforge/heirloom/$name-$version.tar.bz2) + +build() { + cd $name-$version + + sed -i 's|/etc/nail.rc|/usr/etc/mailx.rc|' mailx.1 + + make install \ + PREFIX=/usr \ + SYSCONFDIR=/usr/etc \ + MAILRC=/usr/etc/mailx.rc \ + MANDIR=/usr/man \ + SENDMAIL=/usr/sbin/sendmail \ + MAILSPOOL=/var/spool/mail \ + UCBINSTALL=/usr/bin/install \ + 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 +} |