Skip to content
Permalink
96c92cb4ab
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 45 lines (31 sloc) 830 Bytes
#!/bin/env beesh
SRCURL[0]="http://downloads.sourceforge.net/heirloom/mailx-12.4.tar.bz2"
PATCHURL[0]="http://www.linuxfromscratch.org/patches/blfs/svn/mailx-12.4-openssl_1.0.0_build_fix-1.patch"
BEE_CONFIGURE=none
# EXCLUDE=""
B=${S}
mee_extract() {
bee_extract ${@}
}
mee_patch() {
bee_patch ${@}
}
mee_configure() {
bee_configure
}
mee_build() {
bee_build SENDMAIL=/usr/sbin/sendmail
}
mee_install() {
bee_install PREFIX=${PREFIX} UCBINSTALL=/usr/bin/install
ln -sv mailx ${D}${BINDIR}/mail
ln -sv mailx ${D}${BINDIR}/nail
ln -sv mailx.1 ${D}${MANDIR}/man1/nail.1
ln -sv mailx.1 ${D}${MANDIR}/man1/mail.1
# setup
mv -v ${D}/etc/nail{,-molgen}.rc
cat >>${D}/etc/nail-molgen.rc <<-EOF
set smtp=harry.molgen.mpg.de
set hostname=molgen.mpg.de
EOF
}