# Maintainer: Yardena Cohen # Contributor: Techlive Zheng # Contributor: Filip S. Adamsen # Contributor: David Zaragoza # Contributor: Piotr Beling # Contributor: Wael Nasreddine # Contributor: Guillermo A. Amaral (thewonka) # Contributor: Chih-mao Chen pkgname='perl-convert-uulib' pkgver='1.4' pkgrel='5' pkgdesc='Perl interface to the uulib library (a.k.a. uudeview/uuenview).' _dist=Convert-UUlib arch=('any') url='http://search.cpan.org/~mlehmann/Convert-UUlib/' license=('GPL' 'PerlArtistic') depends=('perl>=5.8.4') options=(!emptydirs) source=("http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/Convert-UUlib-${pkgver}.tar.gz") md5sums=('a6486df1d9ce319406fb9d5a610da759') build() { cd "${srcdir}"/"${_dist}"-"${pkgver}" unset PERL5LIB PERL_MM_OPT CPPFLAGS export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps perl Makefile.PL make } check() { cd "${srcdir}"/"${_dist}"-"${pkgver}" unset PERL5LIB PERL_MM_OPT export PERL_MM_USE_DEFAULT=1 make test } package() { cd "${srcdir}"/"${_dist}"-"${pkgver}" unset PERL5LIB PERL_MM_OPT make install INSTALLDIRS=vendor DESTDIR="${pkgdir}" find "${pkgdir}" -name '.packlist' -o -name 'perllocal.pod' -delete }