diff options
author | Aaron Ball <nullspoon@iohq.net> | 2016-01-18 17:39:09 -0700 |
---|---|---|
committer | Aaron Ball <nullspoon@iohq.net> | 2016-01-18 17:39:09 -0700 |
commit | 0f8e396ab005aa7f5b6768a2a4b4c54952c7fd7b (patch) | |
tree | aaec5878a6633176c9ae01fc31a3f23cc451c16a /mbsync | |
parent | 5dfb655120ac06fee344311831aed769b087eb64 (diff) | |
download | ports-0f8e396ab005aa7f5b6768a2a4b4c54952c7fd7b.tar.gz ports-0f8e396ab005aa7f5b6768a2a4b4c54952c7fd7b.tar.xz |
Renamed isync to mbsync
Diffstat (limited to 'mbsync')
-rw-r--r-- | mbsync/.footprint | 10 | ||||
-rw-r--r-- | mbsync/Pkgfile | 34 |
2 files changed, 44 insertions, 0 deletions
diff --git a/mbsync/.footprint b/mbsync/.footprint new file mode 100644 index 0000000..9a77f60 --- /dev/null +++ b/mbsync/.footprint @@ -0,0 +1,10 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/get-cert +-rwxr-xr-x root/root usr/bin/mbsync +-rwxr-xr-x root/root usr/bin/mdconvert +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/mbsync.1.gz +-rw-r--r-- root/root usr/man/man1/mdconvert.1.gz +drwxr-xr-x root/root usr/share/ diff --git a/mbsync/Pkgfile b/mbsync/Pkgfile new file mode 100644 index 0000000..e52f640 --- /dev/null +++ b/mbsync/Pkgfile @@ -0,0 +1,34 @@ +# Description: Mailbox synchronizer +# URL: http://isync.sourceforge.net/ +# Maintainer: Aaron Ball <nullspoon at oper dot io> +# Depends on: + +name=mbsync +version=master +release=1 +source=() + +gitsource=http://git.code.sf.net/p/isync/isync + +build() { + cd $PKGMK_SOURCE_DIR + + if cd $name; then + git reset --hard + git pull $gitsource + else + git clone $gitsource $name + cd $name + fi + + git checkout $version + + autoreconf -fi + ./configure --prefix=/usr --mandir=/usr/man --disable-compat + make + make DESTDIR=$PKG install + + rm -rf $PKG/usr/share/doc +} +# vim: set ft=sh ts=4 et: + |