blob: 1a5588ef1d7b9dcfb935b176881472ac02a30704 (
plain)
1 # Description: Get information about a class and its structure
2 # URL: https://metacpan.org/pod/Class::Inspector
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on:
5
6 name=p5-class-inspector
7 version=1.36
8 release=1
9 source=(https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/Class-Inspector-$version.tar.gz)
10
11 build() {
12 cd Class-Inspector-$version
13 perl Makefile.PL INSTALLDIRS=vendor
14 make
15 make DESTDIR=$PKG install
16 find $PKG \( -iname .packlist -o \
17 -iname perllocal.pod -o \
18 -iname README -o \
19 -iname '*.bs' \) -delete
20 }
|