diff options
author | root <root@rshg054.dnsready.net> | 2013-05-17 01:53:16 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-05-17 01:53:16 -0700 |
commit | b5f4c940227b9a7051c381688636d59f67864f93 (patch) | |
tree | 99d9cd904411e9aad2ea12662db7d3eb8c786085 /community/exim | |
parent | 453f3b8b2c568e9babcdc4852772278a39f130c0 (diff) |
Fri May 17 01:52:35 PDT 2013
Diffstat (limited to 'community/exim')
-rw-r--r-- | community/exim/PKGBUILD | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/community/exim/PKGBUILD b/community/exim/PKGBUILD index 777c75284..fd090db52 100644 --- a/community/exim/PKGBUILD +++ b/community/exim/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 90378 2013-05-12 06:05:15Z bpiotrowski $ +# $Id: PKGBUILD 90949 2013-05-16 06:57:01Z bpiotrowski $ # Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> # Contributor: Angel Velasquez <angvp@archlinux.org> # Contributor: judd <jvinet@zeroflux.org> pkgname=exim pkgver=4.80.1 -pkgrel=2 +pkgrel=3 pkgdesc="Message Transfer Agent" arch=('x86_64' 'i686') url='http://www.exim.org/' @@ -13,8 +13,8 @@ license=('GPL') backup=(etc/mail/aliases etc/mail/exim.conf etc/logrotate.d/exim) install=exim.install depends=('db' 'pcre' 'pam' 'openssl' 'libldap') -provides=('smtp-server') -conflicts=('smtp-server') +provides=('smtp-server' 'smtp-forwarder') +conflicts=('smtp-server' 'smtp-forwarder') options=('!makeflags') source=("http://mirror.switch.ch/ftp/mirror/exim/exim/exim4/exim-$pkgver.tar.bz2" aliases @@ -65,10 +65,13 @@ package() { cp "$srcdir/aliases" "$pkgdir/etc/mail" + install -d "$pkgdir/usr/sbin" cd "$pkgdir/usr/bin" for i in mailq rmail rsmtp runq sendmail; do ln -s exim "$i" + ln -s ../bin/exim ../sbin/"$i" done + # fhs compliancy ln -s ../bin/exim ../lib/sendmail |