Created
November 19, 2013 16:34
-
-
Save mvgrimes/7548242 to your computer and use it in GitHub Desktop.
Updated PKGBUILD for perl-math-calc-units that supports local::lib, etc.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: sh0 <[email protected]> | |
pkgname=perl-math-calc-units | |
pkgver=1.07 | |
pkgrel=1 | |
pkgdesc="Human-readable unit-aware calculator" | |
_dist=Math-Calc-Units | |
arch=('any') | |
url="http://search.cpan.org/dist/$_dist" | |
license=('unknown') | |
depends=('perl>=5.10.0') | |
options=(!emptydirs) | |
source=(http://search.cpan.org/CPAN/authors/id/S/SF/SFINK/$_dist-$pkgver.tar.gz) | |
md5sums=('56e4be0e64d6c8fc27c8f87d0d3cebd8') | |
build() ( | |
cd "$srcdir/$_dist-$pkgver" | |
unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT | |
export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps | |
/usr/bin/perl Makefile.PL | |
make | |
) | |
check() ( | |
cd "$srcdir/$_dist-$pkgver" | |
unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT | |
export PERL_MM_USE_DEFAULT=1 | |
make test | |
) | |
package() ( | |
cd "$srcdir/$_dist-$pkgver" | |
unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT | |
make install INSTALLDIRS=vendor DESTDIR="$pkgdir" | |
) | |
# vim:set ts=2 sw=2 et: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment