summaryrefslogtreecommitdiff
path: root/perl-encoding-fixlatin/PKGBUILD
blob: 10dd2681ca1d8b6e93048cd366cedb9cb92ae403 (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
# Maintainer: Erich Eckner <arch at eckner dot net>
# Contributor: John D Jones III <jnbek1972 -_AT_- g m a i l -_Dot_- com>
# Generator  : CPANPLUS::Dist::Arch 1.28

pkgname='perl-encoding-fixlatin'
pkgver='1.04'
pkgrel='7'
pkgdesc="takes mixed encoding input and produces UTF-8 output"
arch=('any')
license=('PerlArtistic' 'GPL')
options=('!emptydirs')
depends=(
  'perl>=5.28'
  'perl<5.29'
  'perl>=5.8.0')
makedepends=(
  'perl-extutils-makemaker>=6.30'
  'perl-test-simple>=0.90')
optdepends=(
  'perl-encoding-fixlatin-xs>=1.00')
checkdepends=(
  'perl-test-fatal'
  'perl-pod-coverage-trustpod'
  'perl-test-pod'
  'perl-test-pod-coverage')
url='http://github.com/grantm/encoding-fixlatin'
source=("http://search.cpan.org/CPAN/authors/id/G/GR/GRANTM/Encoding-FixLatin-${pkgver}.tar.gz")
sha512sums=('7091e503b11c9d1c5a3dd38156467cf398ae4b96e1c109db4781478dfb100c2cc50e688c742392f66b9f195b936c19cafe003fffe4fc0459165b02622c154f72')
_distdir="Encoding-FixLatin-${pkgver}"

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"

    /usr/bin/perl Makefile.PL
    make
  )
}

check() {
  cd "$srcdir/$_distdir"
  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
    export RELEASE_TESTING=1
    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: