blob: b0a14d670b9f76bbc2f0ee777eeda242a2e44fd4 (
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
|
# Maintainer: Erich Eckner <arch at eckner dot net>
# Contributor: xRemaLx <anton.komolov@gmail.com>
pkgname=perl-ole-storage-lite
_pkgname='OLE-Storage_Lite'
pkgver=0.19
pkgrel='4'
_distdir="${_pkgname}-${pkgver}"
pkgdesc="Simple Class for OLE document interface"
arch=('any')
url="http://search.cpan.org/dist/OLE-Storage_Lite/"
license=('GPL' 'PerlArtistic')
depends=(
'perl')
makedepends=(
'perl-extutils-makemaker')
options=('!emptydirs')
source=("http://search.cpan.org/CPAN/authors/id/J/JM/JMCNAMARA/${_distdir}.tar.gz")
sha256sums=('e72e055c35bd85ad7c20cf2adb6c89bdbf5725df969484fa6dc981d531ef2c9d')
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=""
make test
)
}
package() {
cd "${srcdir}/${_distdir}"
make install
find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
}
|