summaryrefslogtreecommitdiff
path: root/perl-moox-strictconstructor/PKGBUILD
blob: ec8a13d7fe44db56d0a01f186f2f693a86d3974c (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Maintainer: Erich Eckner <arch at eckner dot net>
# Generator : neuesPerlPaket (e520087d22896debe22f9376d2e46ee8f7a57ce44debdfc7a7d1c414a9fd5b5f75c8ce9350f4e793cd6356e6207c8cca7930b0b973dbd8a9dc2068472324bb72)

pkgname='perl-moox-strictconstructor'
pkgver=0.011
pkgrel=2
pkgdesc='Make your Moo-based object constructors blow up on unknown attributes.'
arch=('any')
license=('PerlArtistic' 'GPL')
options=('!emptydirs')
makedepends=(
  'perl>=5.6.0'
  'perl-extutils-makemaker>=6.17'
  'perl-file-temp'
  'perl-io'
  'perl-pathtools'
  'perl-test-fatal'
  'perl-test-simple>=0.88')
depends=(
  'perl>=5.32'
  'perl<5.33'
  'perl-class-method-modifiers'
  'perl-constant'
  'perl-moo>=1.001000'
  'perl-strictures>=1')
provides=(
  'perl-method-generate-constructor-role-strictconstructor=0.011')
url='https://metacpan.org/release/MooX-StrictConstructor'
_distdir="MooX-StrictConstructor-${pkgver}"
source=("https://cpan.metacpan.org/authors/id/H/HA/HARTZELL/${_distdir}.tar.gz")
sha512sums=('9f977795ae3c746b8dd65573b8cc8ea69c8fcb13a8cc6725069bcf2479b96ea2954d5531a7c92189c5523218a9e66e431f510956472248c5f0795d952ee58eb1')

build(){
  cd "${srcdir}/${_distdir}"
  
  # Setting these env variables overwrites any command-line-options we don't want...
  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

  # If using Makefile.PL
  if [ -r Makefile.PL ]; then
    perl Makefile.PL
    make
  # If using Build.PL
  elif [ -r Build.PL ]; then
    perl Build.PL
    perl Build
  fi
}

check(){
  cd "${srcdir}/${_distdir}"

  # If using Makefile.PL
  if [ -r Makefile.PL ]; then
    make test
  # If using Build.PL
  elif [ -r Build.PL ]; then
    perl Build test
  fi
}

package(){
  cd "${srcdir}/${_distdir}"
  
  # If using Makefile.PL
  if [ -r Makefile.PL ]; then
    make install
  # If using Build.PL
  elif [ -r Build.PL ]; then
    perl Build install
  fi

  # remove perllocal.pod and .packlist
  find "${pkgdir}" -name .packlist -o -name perllocal.pod -delete
}