mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
network/isync: Updated for version 1.3.0.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
parent
399ca35b72
commit
9e6558fb33
3 changed files with 24 additions and 24 deletions
|
@ -4,24 +4,24 @@ After installation, create $HOME/.mbsyncrc. This file contains information
|
|||
about your email stores and channels. An example configuration, between
|
||||
a remote IMAP server and a local Maildir:
|
||||
|
||||
MaildirStore local
|
||||
Path ~/Maildir/
|
||||
MaildirStore local
|
||||
Path ~/Maildir/
|
||||
|
||||
IMAPAccount My-IMAP-server
|
||||
Host mail.myisp.foo
|
||||
Port 143
|
||||
User myuser
|
||||
#Pass mypass -- if not supplied, mbsync will prompt at runtime
|
||||
IMAPAccount My-IMAP-server
|
||||
Host mail.myisp.foo
|
||||
Port 143
|
||||
User myuser
|
||||
#Pass mypass -- if not supplied, mbsync will prompt at runtime
|
||||
|
||||
IMAPStore My-IMAP-store
|
||||
Account My-IMAP-Server
|
||||
IMAPStore My-IMAP-store
|
||||
Account My-IMAP-Server
|
||||
|
||||
Channel My-Channel
|
||||
Master :My-IMAP-store:
|
||||
Slave :local:
|
||||
Patterns % !Trash # Synchronize all at this level except Trash
|
||||
Sync All
|
||||
Create Both
|
||||
Expunge Both
|
||||
Channel My-Channel
|
||||
Master :My-IMAP-store:
|
||||
Slave :local:
|
||||
Patterns % !Trash # Synchronize all at this level except Trash
|
||||
Sync All
|
||||
Create Both
|
||||
Expunge Both
|
||||
|
||||
See mbsync(1) for additional explanation and options.
|
||||
|
|
|
@ -29,13 +29,13 @@
|
|||
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=isync
|
||||
VERSION=${VERSION:-1.2.2}
|
||||
VERSION=${VERSION:-1.3.0}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
i?86) ARCH=i586 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
|
@ -46,8 +46,8 @@ TMP=${TMP:-/tmp/SBo}
|
|||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
if [ "$ARCH" = "i586" ]; then
|
||||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
|
@ -60,7 +60,7 @@ else
|
|||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
set -e
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="isync"
|
||||
VERSION="1.2.2"
|
||||
VERSION="1.3.0"
|
||||
HOMEPAGE="http://isync.sourceforge.net"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/isync/isync-1.2.2.tar.gz"
|
||||
MD5SUM="f7b63f10dd6ab9c7d03d813cb6325a99"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/isync/isync-1.3.0.tar.gz"
|
||||
MD5SUM="f64e8723ebbb081bc15510586bfa1f8f"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in a new issue