summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7fd7ae6eeae47d03f9c5740276bdfd811cb204cd (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
# Maintainer: Caleb Maclennan <caleb@alerque.com>

_distname=YAML-Merge-Simple
pkgname=perl-yaml-merge-simple
pkgver=0.01
pkgrel=6
_distrel=01
pkgdesc='Recursively merge two or more YAMLs, simply'
arch=('any')
url="https://github.com/andrefs/$_distname"
license=('PerlArtistic' 'GPL')
_perl_deps=(hash-merge-simple yaml-libyaml)
depends=(perl "${_perl_deps[@]/#/perl-}")
options=('!emptydirs')
_distdir="$_distname-${pkgver}_$_distrel"
source=("https://cpan.metacpan.org/authors/id/A/AN/ANDREFS/$_distdir.tar.gz")
sha256sums=('01ccfbd91b1ff3a3b1edd14f343cf61f6470c4036456a8bfa350eb211c9d0517')

build() {
	cd "$_distdir"
	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
	/usr/bin/perl Makefile.PL
	make
}

check() {
	cd "$_distdir"
	export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
	make test
}

package() {
	cd "$_distdir"
	make install
	find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
}