blob: 443868e897a5bf728b4c92ee4ebd5dfbef714f03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $Id$
# Maintainer: Chris Brannon <cmbrannon79@gmail.com>
# Contributor: Abhishek Dasgupta <abhidg@gmail.com>
pkgname=perl-net-smtp-ssl
pkgver=1.04
pkgrel=3
pkgdesc="SSL support for Net::SMTP"
arch=(any)
url="http://search.cpan.org/dist/Net-SMTP-SSL/"
license=('GPL' 'PerlArtistic')
depends=('perl-io-socket-ssl')
options=(!emptydirs)
source=("http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Net-SMTP-SSL-$pkgver.tar.gz")
sha256sums=('7b29c45add19d3d5084b751f7ba89a8e40479a446ce21cfd9cc741e558332a00')
package() {
cd "${srcdir}/Net-SMTP-SSL-${pkgver}"
# Install module into the vendor directories.
perl Makefile.PL INSTALLDIRS=vendor
make
make DESTDIR="$pkgdir" install || return 1
# Remove .packlist and perllocal.pod files.
find "$pkgdir" -name '.packlist' -delete
find "$pkgdir" -name 'perllocal.pod' -delete
}
|