talimat 618 B

123456789101112131415161718192021222324252627
  1. # Description: TTY'lere ve PTY'lere bir arayüz sağlama
  2. # URL: http://search.cpan.org/dist/IO-Tty/
  3. # Packager: milisarge
  4. # Depends on:
  5. name=perl-io-tty
  6. version=1.11
  7. release=1
  8. source=(http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/IO-Tty-$version.tar.gz)
  9. build() {
  10. cd IO-Tty-$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)