blob: 01ea158e18783ecffaf3184ef663f484fef45367 (
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
|
# Contributor: Thor77 <thor77 at thor77 dot org>
pkgname=perl-ogg-vorbis-header-pureperl
pkgver=1.05
pkgrel=2
pkgdesc='Perl/CPAN module Ogg::Vorbis::Header::PurePerl - An object-oriented interface to Ogg Vorbis info and comments'
_dist=Ogg-Vorbis-Header-PurePerl
arch=(any)
url="https://metacpan.org/release/$_dist"
license=(GPL-2.0-or-later)
depends=(perl)
options=(!emptydirs purge)
source=("https://cpan.metacpan.org/authors/id/D/DA/DAVECROSS/$_dist-$pkgver.tar.gz")
sha256sums=('521d3808f42d7122a6b06c33a6eae6d7c39947aab57c4c8ccafcc4f603fda53e')
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"
}
|