talimat 561 B

12345678910111213141516171819202122232425262728
  1. # Description: Uzak posta sunucularından posta alır ve yerel makinelere iletir
  2. # URL: http://www.fetchmail.info
  3. # Packager: milisarge
  4. # Depends on: openssl procmail python tk
  5. name=fetchmail
  6. version=6.3.26
  7. release=1
  8. source=(http://downloads.sourceforge.net/fetchmail/$name-$version.tar.xz
  9. .fetchmailrc)
  10. build() {
  11. cd $name-$version
  12. ./configure --prefix=/usr --with-ssl --enable-fallback=procmail
  13. make
  14. make DESTDIR=$PKG install
  15. install -v -m755 -d $PKG/root
  16. cp -v $SRC/.fetchmailrc $PKG/root/.fetchmailrc
  17. chmod -v 0600 $PKG/root/.fetchmailrc
  18. }