blob: 54f56e1c2f71b5479c6e34c85646e57f7b73c240 (
plain)
1 # Description: Mail Transfer Agent for workstations and local networks
2 # URL: http://marmaro.de/prog/masqmail/
3 # Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
4 # Depends on: glib
5
6 name=masqmail
7 version=0.3.4
8 release=2
9 source=(http://marmaro.de/prog/masqmail/files/$name-$version.tar.gz
10 masqmail)
11
12 build () {
13 cd $name-$version
14
15 ./configure --prefix=/usr \
16 --mandir=/usr/man \
17 --with-user=mail \
18 --with-group=mail
19 make
20 make DESTDIR=$PKG install
21
22 ln -s masqmail $PKG/usr/sbin/sendmail
23 ln -s ../sbin/masqmail $PKG/usr/bin/mailq
24
25 install -m 644 examples/* $PKG/etc/masqmail
26 install -D -m 755 $SRC/masqmail $PKG/etc/rc.d/masqmail
27
28 install -d -o mail -g mail $PKG/var/{log,lock,spool}/masqmail
29 touch $PKG/var/log/masqmail/{masqmail,debug}.log
30 chown mail:mail $PKG/var/log/masqmail/*
31 chmod 1777 $PKG/var/lock
32
33 rm $PKG/usr/share/masqmail/tpl/*.tpl.*
34 rm -r $PKG/usr/share/doc
35 }
|