blob: f0f246858a407a94a610ae0ed1614182ae8d9287 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Contributor: Volker Schatz <arch@my-name-without-hyphen.com>
pkgname='perl-net-smtp-tls'
_cpanname='Net-SMTP-TLS'
pkgver='0.12'
pkgrel='2'
pkgdesc='Perl SMTP client supporting TLS and AUTH'
arch=('any')
url="https://metacpan.org/release/$_cpanname"
license=('GPL' 'PerlArtistic')
depends=('perl' 'perl-digest-hmac' 'perl-io-socket-ssl' 'perl-net-ssleay')
options=('!emptydirs')
source=("https://cpan.metacpan.org/authors/id/A/AW/AWESTHOLM/Net-SMTP-TLS-0.12.tar.gz"
"tls-fixes.diff")
md5sums=('a845eba3670e56a197ecd37f571d153a'
'6bd41774da31f07c7b60a28db6247922')
# Function to change to the working directory and set
# environment variables to override undesired options.
prepareEnvironment() {
cd "$srcdir/$_cpanname-$pkgver"
export \
PERL_MM_USE_DEFAULT=1 \
PERL_AUTOINSTALL=--skipdeps \
PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
MODULEBUILDRC=/dev/null
}
build() {
prepareEnvironment
/usr/bin/perl Makefile.PL
make
cd lib/Net/SMTP
patch < "$srcdir/tls-fixes.diff"
}
check() {
prepareEnvironment
make test
}
package() {
prepareEnvironment
make install
# Remove "perllocal.pod" and ".packlist".
find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
}
|