Search Criteria
Package Details: perl-sys-cpu 0.61-1
Git Clone URL: | https://aur.archlinux.org/perl-sys-cpu.git (read-only, click to copy) |
---|---|
Package Base: | perl-sys-cpu |
Description: | Perl extension for getting CPU information. Currently only number of CPU's supported. |
Upstream URL: | http://search.cpan.org/~mkoderer/Sys-CPU-0.61/ |
Licenses: | |
Submitter: | cdkitching |
Maintainer: | cdkitching (Techmeology) |
Last Packager: | cdkitching |
Votes: | 5 |
Popularity: | 0.000000 |
First Submitted: | 2016-02-17 05:43 |
Last Updated: | 2016-02-17 05:44 |
Latest Comments
Evils commented on 2017-09-10 17:25
The pkg built into my home directory which is definitely not my vendor directory. Had to exchange the build() step for:
build() {
cd "$srcdir/Sys-CPU-$pkgver"
export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps \
PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
PERL5LIB="" PERL_LOCAL_LIB_ROOT="" \
MODULEBUILDRC=/dev/null
{ /usr/bin/perl Makefile.PL &&
make &&
make test; } || return 1
}
tavianator commented on 2016-02-17 21:08
Hey thanks for submitting these!