summaryrefslogtreecommitdiff
path: root/perl-moosex-nonmoose/PKGBUILD
blob: d302b67490f737a1b69c0b8cf306062471a9a346 (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
# Maintainer: Erich Eckner <arch at eckner dot net>

pkgname='perl-moosex-nonmoose'
pkgver='0.26'
pkgrel=7
pkgdesc='easy subclassing of non-Moose classes'
arch=('any')
license=('PerlArtistic' 'GPL')
options=('!emptydirs')
provides=(
  'perl-moosex-nonmoose-insideout=0.26'
  'perl-moosex-nonmoose-meta-role-class=0.26'
  'perl-moosex-nonmoose-meta-role-constructor=0.26')
depends=(
  'perl>=5.30'
  'perl<5.31'
  'perl-list-moreutils'
  'perl-module-runtime'
  'perl-moose-exporter'
  'perl-moose-role>=2.0000'
  'perl-moose-util'
  'perl-try-tiny')
makedepends=(
  'perl-base'
  'perl-extutils-makemaker>=6.30'
  'perl-io'
  'perl-moose'
  'perl-pathtools'
  'perl-test-fatal'
  'perl-test-moose'
  'perl-test-simple>=0.88')
checkdepends=(
  'perl-moosex-globref'
  'perl-moosex-insideout'
)
url='https://metacpan.org/release/Algorithm-C3'
_distdir="MooseX-NonMoose-${pkgver}"
source=("https://cpan.metacpan.org/authors/id/D/DO/DOY/${_distdir}.tar.gz")
sha512sums=('3f3bb494439af198a49e343df7c2e6ceae5a227c143cddd36e6f8f9f85c30108117ce2f12d9cea89713820790081b363a57f9798e660994568db11c9fb224612')

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: