testing/msmtp: new aport

SMTP client with a sendmail compatible interface
http://msmtp.sourceforge.net/
This commit is contained in:
Natanael Copa 2011-03-05 19:11:32 +00:00
parent 1f311622ed
commit a7a3ff3d26

43
testing/msmtp/APKBUILD Normal file
View File

@ -0,0 +1,43 @@
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=msmtp
pkgver=1.4.23
pkgrel=0
pkgdesc="SMTP client with a sendmail compatible interface"
url="http://msmtp.sourceforge.net/"
arch="all"
license="GPLv3+"
depends=
makedepends=
install=
subpackages="$pkgname-doc"
source="http://downloads.sourceforge.net/project/msmtp/msmtp/$pkgver/msmtp-$pkgver.tar.bz2"
_builddir="$srcdir"/msmtp-$pkgver
prepare() {
local i
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$_builddir"
./configure --prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--localstatedir=/var \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
}
md5sums="5fb7ae88186624cdb125d3efad3fdc16 msmtp-1.4.23.tar.bz2"