summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1f4496751c2b80e7c84a2109f2731d3b62fc8819 (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
# Maintainer: Thiago L. A. Miller <thiago_leisrael@hotmail.com>
# Contributor: John D Jones III AKA jnbek <jnbek1972 -_AT_- g m a i l -_Dot_- com>
_distname=Dist-Zilla-Plugin-CheckChangesHasContent
pkgname=perl-dist-zilla-plugin-checkchangeshascontent
pkgver=0.011
pkgrel=1
pkgdesc="Ensure Changes has content before releasing"
arch=('any')
url="http://search.cpan.org/dist/$_distname"
license=('PerlArtistic' 'GPL')
depends=('perl>=5.006'
         'perl-capture-tiny>=0'
         'perl-data-section>=0.200002'
         'perl-dist-zilla>=6'
         'perl-moose>=2'
         'perl-path-tiny>=0'
         'perl-sub-exporter-formethods>=0'
         'perl-namespace-autoclean>=0.28')
makedepends=()
checkdepends=('perl-test-fatal>=0')
options=('!emptydirs')
source=("http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/$_distname-$pkgver.tar.gz")
md5sums=('9d9c660042b546304486f77121df339a')

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 "$_distname-$pkgver"
    /usr/bin/perl Makefile.PL
    make
  )
}

check() {
  cd "$_distname-$pkgver"
  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
    make test
  )
}

package() {
  cd "$_distname-$pkgver"
  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: