talimat 680 B

123456789101112131415161718192021222324252627
  1. # Description: CPAN Test::Pod::Kapsama modülü
  2. # URL: URL: http://search.cpan.org/dist/Test-Pod-Coverage/
  3. # Packager: milisarge
  4. # Depends on: perl-pod-coverage
  5. name=perl-test-pod-coverage
  6. version=1.08
  7. release=1
  8. source=(http://search.cpan.org/CPAN/authors/id/P/PE/PETDANCE/Test-Pod-Coverage-$version.tar.gz)
  9. build() {
  10. cd Test-Pod-Coverage-$version
  11. perl Makefile.PL
  12. make OPTIMIZE="$CFLAGS" || exit 1
  13. make install INSTALLDIRS=vendor DESTDIR=$PKG || exit 1
  14. # Remove perllocal.pod and .packlist if present in the package
  15. for i in perllocal.pod .packlist; do
  16. find $PKG -name "$i" -exec rm -rf {} \;
  17. done
  18. }
  19. # NuTyX Pkgfile (http://nutyx.org)