diff options
author | Juergen Daubert <jue@jue.li> | 2016-10-28 16:39:01 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2016-10-28 16:39:01 +0200 |
commit | be8688178878e18c9e01a473698e43d2648bd546 (patch) | |
tree | 419ab1d67925b905b85df05b6a91d29c8da5390c /fdm | |
parent | 39757a38dfbe4381f39da5290ea34a709e16694b (diff) | |
download | opt-be8688178878e18c9e01a473698e43d2648bd546.tar.gz opt-be8688178878e18c9e01a473698e43d2648bd546.tar.xz |
fdm: initial release
Diffstat (limited to 'fdm')
-rw-r--r-- | fdm/.footprint | 9 | ||||
-rw-r--r-- | fdm/.md5sum | 1 | ||||
-rw-r--r-- | fdm/Pkgfile | 16 |
3 files changed, 26 insertions, 0 deletions
diff --git a/fdm/.footprint b/fdm/.footprint new file mode 100644 index 000000000..8923e0682 --- /dev/null +++ b/fdm/.footprint @@ -0,0 +1,9 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/fdm +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/fdm.1.gz +drwxr-xr-x root/root usr/share/man/man5/ +-rw-r--r-- root/root usr/share/man/man5/fdm.conf.5.gz diff --git a/fdm/.md5sum b/fdm/.md5sum new file mode 100644 index 000000000..bd9b601d4 --- /dev/null +++ b/fdm/.md5sum @@ -0,0 +1 @@ +da8e2154621f85f426e2b808390f7ca7 fdm-1.9.tar.gz diff --git a/fdm/Pkgfile b/fdm/Pkgfile new file mode 100644 index 000000000..537e8c2d6 --- /dev/null +++ b/fdm/Pkgfile @@ -0,0 +1,16 @@ +# Description: Program to fetch mail and deliver it in various ways +# URL: https://github.com/nicm/fdm +# Maintainer: Juergen Daubert, jue at crux dot nu +# Depends on: tdb + +name=fdm +version=1.9 +release=1 +source=(https://github.com/nicm/fdm/releases/download/$version/$name-$version.tar.gz) + +build () { + cd $name-$version + ./configure --prefix=/usr + make + make DESTDIR=$PKG install +} |