talimat 647 B

1234567891011121314151617181920212223
  1. # Description: Perl'den gettext () fonksiyon ailesine erişime izin verir.
  2. # URL: http://search.cpan.org/dist/gettext/
  3. # Packager: alihan-ozturk28@hotmail.com milisarge
  4. # Depends on:
  5. name=perl-locale-gettext
  6. version=1.07
  7. release=1
  8. source=(http://search.cpan.org/CPAN/authors/id/P/PV/PVANDRY/gettext-$version.tar.gz)
  9. build() {
  10. cd Locale-gettext-$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. }