# Description: this module is for creating abstract data structures called graphs, and for doing various operations on those. # URL: https://metacpan.org/pod/Graph # Maintainer: Hans Bezemer, hbezemer at kliksafe dot nl # Depends on: name=p5-graph version=0.9704 release=1 source=(https://cpan.metacpan.org/authors/id/J/JH/JHI/Graph-${version}.tar.gz) build() { cd Graph-$version unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps perl Makefile.PL make make install INSTALLDIRS=vendor DESTDIR=$PKG find $PKG -name .packlist -o \ -name perllocal.pod -o \ -name README -o \ -name '*.bs' | xargs rm rm -r $PKG/usr/share/man/ }