summaryrefslogtreecommitdiff
path: root/perl-symbol-util/PKGBUILD
blob: d946a40353bd34342580549e7b2e0f18018eef7c (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
51
# Maintainer: Erich Eckner <arch at eckner dot net>

pkgname='perl-symbol-util'
pkgver='0.0203'
pkgrel=8
pkgdesc='Additional utils for Perl symbols manipulation'
arch=('any')
license=('PerlArtistic' 'GPL')
options=('!emptydirs')
depends=(
  'perl>=5.32'
  'perl<5.33'
  'perl>=5.6.0')
checkdepends=()
url='https://metacpan.org/pod/Symbol::Util'
_distdir="Symbol-Util-${pkgver}"
source=("https://cpan.metacpan.org/authors/id/D/DE/DEXTER/${_distdir}.tar.gz")
sha512sums=('380dfec5009ae6e6d6df8981a2314f56be049039c33d86d03262ca30c4de54930e0e6dd38c83c40c4edc5c548e0ea8bd0a5b734a295b8925ad264cffbc19296d')

build() {
  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""                 \
      PERL_AUTOINSTALL=--skipdeps                            \
      PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'"     \
      PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
      MODULEBUILDRC=/dev/null

    cd "$srcdir/$_distdir"
    perl Makefile.PL
    make
  )
}

check() {
  cd "$srcdir/$_distdir"
  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
    make test
  )
}

package() {
  cd "$srcdir/$_distdir"
  make install

  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
}

# Local Variables:
# mode: shell-script
# sh-basic-offset: 2
# End:
# vim:set ts=2 sw=2 et: