summaryrefslogtreecommitdiff
path: root/perl-extutils-f77/PKGBUILD
blob: 1c5a2a36251a8ab6f733b566a18b0a8061b1a7b4 (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
# Maintainer: Erich Eckner <arch at eckner dot net>
# CPAN Name  : ExtUtils::F77
# Contributor: Anton Leontiev <bunder /at/ t-25.ru>
# Generator  : CPANPLUS::Dist::Arch 1.30

pkgname=perl-extutils-f77
pkgver=1.20
pkgrel=8
pkgdesc='Perl module providing simple interface to F77 libraries'
arch=('any')
url='https://metacpan.org/release/ExtUtils-F77'
license=('PerlArtistic' 'GPL')
depends=(
  'perl>=5.32'
  'perl<5.33'
  'gcc-fortran')
makedepends=(
  'perl-extutils-makemaker')
_distdir="ExtUtils-F77-${pkgver}"
source=(http://search.cpan.org/CPAN/authors/id/C/CH/CHM/${_distdir}.tar.gz)
options=(!emptydirs)
sha512sums=('0d7cf351d84676d3dea2ec781b1e230ab4a737d34de4c15c5045603ac6e6e411b5d9b235e68bb9ba0552cc4de0ea67c8355c160840b3205429802ea1569f0400')

sanitize() {
	unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
	export PERL_MM_USE_DEFAULT=1
}

build() {
	cd ${_distdir}
	sanitize
	perl Makefile.PL INSTALLDIRS=vendor
	make
}

check() {
	cd ${_distdir}
	sanitize
	F77LIBS='-lgfortran -lm' make test
}

package() {
	cd ${_distdir}
	sanitize
	make install DESTDIR="$pkgdir"
	find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
}