Package Details: perl-mixin-linewise 0.111-1

Git Clone URL: https://aur.archlinux.org/perl-mixin-linewise.git (read-only, click to copy)
Package Base: perl-mixin-linewise
Description: Write your linewise code for handles; this does the rest
Upstream URL: https://metacpan.org/dist/Mixin-Linewise
Licenses: GPL, PerlArtistic
Submitter: seblu
Maintainer: J5lx
Last Packager: J5lx
Votes: 3
Popularity: 0.000014
First Submitted: 2014-02-22 11:55 (UTC)
Last Updated: 2023-01-01 14:41 (UTC)

Latest Comments

dringsim commented on 2025-02-11 12:26 (UTC) (edited on 2025-02-11 12:26 (UTC) by dringsim)

Please fix PKGBUILD:

 build() {
   cd "${srcdir}/Config-INI-${pkgver}"
-
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
   perl Makefile.PL NO_PACKLIST=true NO_PERLLOCAL=true
   make
 }

 check() {
   cd "${srcdir}/Config-INI-${pkgver}"
-
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
   make test
 }

 package() {
   cd "${srcdir}/Config-INI-${pkgver}"
-
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
   make install INSTALLDIRS=vendor DESTDIR="${pkgdir}"
 }

See Perl package guidelines. Otherwise the package may be installed into home dir.