blob: eef64cfdef35a85ba4e0905b6bfb1415fcc8fb83 (
plain)
1 # Description: Database of robots.txt-derived permissions
2 # URL: https://metacpan.org/release/WWW-RobotRules
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: p5-uri
5
6 name=p5-www-robotrules
7 version=6.02
8 release=1
9 source=(https://cpan.metacpan.org/authors/id/G/GA/GAAS/WWW-RobotRules-$version.tar.gz)
10
11 build() {
12 cd WWW-RobotRules-$version
13 perl Makefile.PL INSTALLDIRS=vendor
14 make
15 make DESTDIR=$PKG install
16 find $PKG \( -name '.packlist' -o -name '*.pod' \) -delete
17 }
|