blob: 3a6df9f6071d3837a83d1d91d0c99377650bcdcd (
plain)
1 # Description: Program to fetch mail and deliver it in various ways
2 # URL: https://github.com/nicm/fdm
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: libpcre2 openssl tdb
5
6 name=fdm
7 version=2.2
8 release=1
9 source=(https://github.com/nicm/fdm/releases/download/$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13 ./configure --prefix=/usr
14 make
15 make DESTDIR=$PKG install
16 }
|