mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 12:26:52 +02:00
testing/msmtp: new aport
SMTP client with a sendmail compatible interface http://msmtp.sourceforge.net/
This commit is contained in:
parent
1f311622ed
commit
a7a3ff3d26
43
testing/msmtp/APKBUILD
Normal file
43
testing/msmtp/APKBUILD
Normal 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"
|
||||
Loading…
x
Reference in New Issue
Block a user