summaryrefslogtreecommitdiff
path: root/fetchmail/Pkgfile
blob: fdba54b8edf7dab3e5ef8aa2b30314d4d9c751a2 (plain)
    1 # Description: A remote-mail retrieval utility
    2 # URL:         http://fetchmail.info
    3 # Maintainer:  Juergen Daubert, jue at crux dot nu
    4 # Depends on:  openssl
    5 
    6 name=fetchmail
    7 version=6.3.23
    8 release=1
    9 source=(http://downloads.sourceforge.net/project/$name/branch_6.3/$name-$version.tar.xz)
   10 
   11 build() {
   12     cd $name-$version
   13 
   14     # don't build python stuff
   15     sed -i '19,21s/^/#/' Makefile.am
   16     autoreconf -v
   17 
   18     ./configure --prefix=/usr \
   19                 --mandir=/usr/man \
   20                 --with-ssl=/usr \
   21                 --disable-nls
   22     make
   23     make DESTDIR=$PKG install
   24 }

Generated by cgit