diff options
Diffstat (limited to 'main/msmtp')
-rw-r--r-- | main/msmtp/APKBUILD | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/main/msmtp/APKBUILD b/main/msmtp/APKBUILD index a0b6b00277..8211e3c89c 100644 --- a/main/msmtp/APKBUILD +++ b/main/msmtp/APKBUILD @@ -7,12 +7,9 @@ pkgdesc="SMTP client with a sendmail compatible interface" url="http://msmtp.sourceforge.net/" arch="all" license="GPL-3.0-or-later" -depends="" makedepends="libressl-dev" -install="" subpackages="$pkgname-doc $pkgname-vim:vim:noarch" source="http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz" -builddir="$srcdir/$pkgname-$pkgver" build() { cd "$builddir" @@ -23,14 +20,13 @@ build() { --sysconfdir=/etc \ --mandir=/usr/share/man \ --localstatedir=/var \ - --with-ssl=openssl \ - || return 1 - make || return 1 + --with-ssl=openssl + make } package() { cd "$builddir" - make DESTDIR="$pkgdir" install || return 1 + make DESTDIR="$pkgdir" install } vim() { |