summaryrefslogtreecommitdiff
path: root/perl-datetime-format-mysql/PKGBUILD
blob: ca2d2219c7153ccbab65dad29d952bc5f0cf5194 (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
# Contributorr: Moritz Bunkus <moritz@bunkus.org>
# Maintainer:   Erich Eckner <arch at eckner dot net>

pkgname=perl-datetime-format-mysql
pkgver=0.0701
pkgrel=4
pkgdesc="Parse and format MySQL dates and times"
arch=('any')
license=('perl')
url="http://search.cpan.org/~drolsky/DateTime-Format-MySQL"
options=(!emptydirs)
depends=(
  'perl>=5.36'
  'perl<5.37'
  'perl-datetime'
  'perl-datetime-format-builder>=0.6')
makedepends=(
  'perl-module-build>=0.42')
_distdir="DateTime-Format-MySQL-${pkgver}"
source=("https://cpan.metacpan.org/authors/id/X/XM/XMIKEW/${_distdir}.tar.gz")
sha512sums=('74cbe1dcf6d708c643b24eb25f837f56715fee6685a1071bce9e5e5114347155018b8c14247233910bd6e6208996532962b93cc024a816fbeb37a41116a6265c')

prepare_environment() {
  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}"
}

build() {
  prepare_environment
  /usr/bin/perl Makefile.PL
  make
}

check() {
  prepare_environment
  make test
}

package() {
  prepare_environment
  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: