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

Generated by cgit