talimat 585 B

1234567891011121314151617181920212223
  1. # Tanım: Uzak posta sunucularından posta alır ve yerel makinelere iletir
  2. # URL: http://www.fetchmail.info
  3. # Paketçi: milisarge
  4. # Gerekler: openssl procmail
  5. # Grup: ağ
  6. isim=fetchmail
  7. surum=6.3.26
  8. devir=1
  9. kaynak=(http://downloads.sourceforge.net/fetchmail/$isim-$surum.tar.xz
  10. fetchmailrc)
  11. derle() {
  12. cd $isim-$surum
  13. ./configure --prefix=/usr --with-ssl --enable-fallback=procmail
  14. make
  15. make DESTDIR=$PKG install
  16. install -v -m755 -d $PKG/usr/share/fetchmail
  17. cp -v $SRC/fetchmailrc $PKG/usr/share/fetchmail/.fetchmailrc
  18. chmod -v 0600 $PKG/usr/share/fetchmail/.fetchmailrc
  19. }