PKGBUILDs/core/mailx/PKGBUILD
2009-10-09 21:17:35 -05:00

31 lines
1 KiB
Bash

# $Id: PKGBUILD 33080 2009-04-04 07:02:59Z allan $
# Maintainer: judd <jvinet@zeroflux.org>
# Committer: Judd Vinet <jvinet@zeroflux.org>
pkgname=mailx
pkgver=8.1.1
pkgrel=7
pkgdesc="A commandline utility for sending email"
arch=('i686' 'x86_64')
url="http://www.opengroup.org/onlinepubs/007908799/xcu/mailx.html"
license=('BSD')
groups=('base')
depends=('glibc')
optdepends=('smtp-forwarder: for sending mail')
backup=('etc/mail.rc')
source=(ftp://ftp.archlinux.org/other/mailx/$pkgname-$pkgver-fixed.tar.gz \
mailx-$pkgver.patch mailx-gcc4.patch)
md5sums=('63cad526ac64b57bcba2c0daaa1f3048' '905cfa35b5131524bfec0c677d456bd3'\
'8716c7c7b3f5d348443230e2fe543bf6')
build() {
cd $srcdir/$pkgname-$pkgver-fixed
patch -Np1 -i $srcdir/mailx-$pkgver.patch || return 1
patch -Np0 -i $srcdir/mailx-gcc4.patch || return 1
sed -i 's#/man/#/share/man/#' Makefile
make all || return 1
make DESTDIR=$pkgdir install
install -dm755 $pkgdir/usr/share/licenses/mailx/
head -35 main.c > $pkgdir/usr/share/licenses/mailx/LICENSE
}