mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
32 lines
998 B
Bash
32 lines
998 B
Bash
# 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=('arm')
|
|
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
|
|
}
|