summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 81a30157d5496eced21195774a52bcfee980ca05 (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
# Maintainer: Kars Wang <jaklsy AT gmail.com>

pkgname='perl-crypt-xtea'
pkgver=0.0106
pkgrel=1
pkgdesc='Implementation of the eXtended Tiny Encryption Algorithm'
_dist='Crypt-XTEA'
arch=('i686' 'x86_64')
url="https://metacpan.org/release/$_dist"
license=('PerlArtistic')
depends=('perl>=5.10.1' 'perl-scalar-util-numeric>=0.40' 'perl-scalar-list-utils>=1.38' 'perl-carp>=0')
checkdepends=('perl>=5.10.1')
makedepends=()
provides=()
options=('!emptydirs' 'purge')
source=("http://search.cpan.org/CPAN/authors/id/J/JA/JAHIY/$_dist-$pkgver.tar.gz")
sha256sums=('077caffaff8742e5234530451b203e6b0cd609d1903998f2eabf906c75361b95')

build() (
  cd "$srcdir/$_dist-$pkgver"
  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
  /usr/bin/perl Makefile.PL
  make
)

check() (
  cd "$srcdir/$_dist-$pkgver"
  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
  export PERL_MM_USE_DEFAULT=1
  make test
)

package() (
  cd "$srcdir/$_dist-$pkgver"
  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
  make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
)