mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
extra/imap to 2007f-3
This commit is contained in:
parent
c43a6d99bd
commit
3119e19785
4 changed files with 12 additions and 12 deletions
|
@ -1,11 +1,11 @@
|
|||
# $Id: PKGBUILD 173922 2012-12-28 05:23:44Z pierre $
|
||||
# $Id$
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - v7h needs -fPIC
|
||||
|
||||
pkgname=imap
|
||||
pkgver=2007f
|
||||
pkgrel=2.1
|
||||
pkgrel=3
|
||||
pkgdesc="An IMAP/POP server"
|
||||
arch=('i686' 'x86_64')
|
||||
license=('APACHE')
|
||||
|
@ -17,9 +17,9 @@ source=("ftp://ftp.cac.washington.edu/imap/${pkgname}-${pkgver}.tar.gz"
|
|||
'imap' 'ipop2' 'ipop3')
|
||||
backup=(etc/xinetd.d/{imap,ipop2,ipop3} etc/ssl/certs/{imapd,ipop3d}.pem)
|
||||
md5sums=('2126fd125ea26b73b20f01fcd5940369'
|
||||
'e77dedb80c2fec9bf2ef784ed5f976fb'
|
||||
'cc3eba6453242aa0b1bc8881160b2136'
|
||||
'0a5e27183a9b7e8ec5f6703125371e0a')
|
||||
'3ae5b3b333bc8ea2da106f6a97d7bd8d'
|
||||
'448f988dc5f9bdb2223dcea3abc4f5f1'
|
||||
'1499b13015075f0aafba04324a6f523a')
|
||||
|
||||
build() {
|
||||
sed \
|
||||
|
@ -61,10 +61,10 @@ EOF
|
|||
|
||||
package() {
|
||||
cd $srcdir/$pkgname-$pkgver
|
||||
install -d $pkgdir/usr/sbin
|
||||
install -D -m755 imapd/imapd $pkgdir/usr/sbin/imapd
|
||||
install -D -m755 ipopd/ipop2d $pkgdir/usr/sbin/ipop2d
|
||||
install -D -m755 ipopd/ipop3d $pkgdir/usr/sbin/ipop3d
|
||||
install -d $pkgdir/usr/bin
|
||||
install -D -m755 imapd/imapd $pkgdir/usr/bin/imapd
|
||||
install -D -m755 ipopd/ipop2d $pkgdir/usr/bin/ipop2d
|
||||
install -D -m755 ipopd/ipop3d $pkgdir/usr/bin/ipop3d
|
||||
for i in c-client mail imap4r1 rfc822 linkage misc smtp nntp \
|
||||
osdep env_unix env fs ftl nl tcp sslio utf8 utf8aux; do
|
||||
install -D -m644 c-client/${i}.h $pkgdir/usr/include/imap/${i}.h
|
||||
|
|
|
@ -3,7 +3,7 @@ service imap2
|
|||
socket_type = stream
|
||||
wait = no
|
||||
user = root
|
||||
server = /usr/sbin/imapd
|
||||
server = /usr/bin/imapd
|
||||
log_on_success += HOST DURATION
|
||||
log_on_failure += HOST
|
||||
disable = yes
|
||||
|
|
|
@ -3,7 +3,7 @@ service pop2
|
|||
socket_type = stream
|
||||
wait = no
|
||||
user = root
|
||||
server = /usr/sbin/ipop2d
|
||||
server = /usr/bin/ipop2d
|
||||
log_on_success += HOST DURATION
|
||||
log_on_failure += HOST
|
||||
disable = yes
|
||||
|
|
|
@ -3,7 +3,7 @@ service pop3
|
|||
socket_type = stream
|
||||
wait = no
|
||||
user = root
|
||||
server = /usr/sbin/ipop3d
|
||||
server = /usr/bin/ipop3d
|
||||
log_on_success += HOST DURATION
|
||||
log_on_failure += HOST
|
||||
disable = yes
|
||||
|
|
Loading…
Reference in a new issue