22 lines
573 B
Plaintext
22 lines
573 B
Plaintext
# Tanım: Uzak posta sunucularından posta alır ve yerel makinelere iletir
|
||
# URL: http://www.fetchmail.info
|
||
# Paketçi: milisarge
|
||
# Gerekler: openssl procmail
|
||
|
||
isim=fetchmail
|
||
surum=6.3.26
|
||
devir=1
|
||
kaynak=(http://downloads.sourceforge.net/fetchmail/$isim-$surum.tar.xz
|
||
fetchmailrc)
|
||
|
||
derle() {
|
||
|
||
cd $isim-$surum
|
||
./configure --prefix=/usr --with-ssl --enable-fallback=procmail
|
||
make
|
||
make DESTDIR=$PKG install
|
||
install -v -m755 -d $PKG/usr/share/fetchmail
|
||
cp -v $SRC/fetchmailrc $PKG/usr/share/fetchmail/.fetchmailrc
|
||
chmod -v 0600 $PKG/usr/share/fetchmail/.fetchmailrc
|
||
}
|