From b5bb7ed409877998b0c7fa9ced5974d6bfc64ce0 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Mon, 25 Apr 2016 10:35:25 +0200 Subject: perl-graphics-gnuplotif neu --- perl-graphics-gnuplotif/PKGBUILD | 48 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 perl-graphics-gnuplotif/PKGBUILD (limited to 'perl-graphics-gnuplotif') diff --git a/perl-graphics-gnuplotif/PKGBUILD b/perl-graphics-gnuplotif/PKGBUILD new file mode 100644 index 00000000..edd9bc1a --- /dev/null +++ b/perl-graphics-gnuplotif/PKGBUILD @@ -0,0 +1,48 @@ +# Maintainer: Erich Eckner + +pkgname='perl-graphics-gnuplotif' +pkgver='1.8' +pkgrel='1' +pkgdesc="A dynamic Perl interface to gnuplot" +arch=('any') +license=('PerlArtistic' 'GPL') +options=('!emptydirs') +depends=('perl' 'gnuplot') +makedepends=() +url='http://search.cpan.org/~mehner/Graphics-GnuplotIF-1.8/' +_distdir="Graphics-GnuplotIF-${pkgver}" +source=("http://search.cpan.org/CPAN/authors/id/M/ME/MEHNER/${_distdir}.tar.gz") +sha512sums=('c0eb2d39d38a891b69969448a1e9be4184c4ea045c1eee813f6c7293d8c3c23d044e1e90c0834fcc76b7f84d388706e0f58bbee044dc9b5d6e4b5cc523a61ea6') + +build() { + ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \ + PERL_AUTOINSTALL=--skipdeps \ + PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \ + PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \ + MODULEBUILDRC=/dev/null + + cd "$srcdir/$_distdir" + /usr/bin/perl Makefile.PL + make + ) +} + +check() { + cd "$srcdir/$_distdir" + ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" + make test + ) +} + +package() { + cd "$srcdir/$_distdir" + make install + + find "$pkgdir" -name .packlist -o -name perllocal.pod -delete +} + +# Local Variables: +# mode: shell-script +# sh-basic-offset: 2 +# End: +# vim:set ts=2 sw=2 et: -- cgit v1.2.3-54-g00ecf