17 lines
462 B
Plaintext
17 lines
462 B
Plaintext
# Description: Perl extension for rounding numbers
|
|
# URL: https://metacpan.org/pod/Math::Round
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
name=p5-math-round
|
|
version=0.08
|
|
release=1
|
|
source=(https://www.cpan.org/authors/id/N/NE/NEILB/Math-Round-$version.tar.gz)
|
|
|
|
build() {
|
|
cd Math-Round-$version
|
|
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
|
|
make
|
|
make install DESTDIR=$PKG
|
|
find $PKG \( -name '.packlist' -o -name '*.pod' \) -delete
|
|
}
|