wok rev 22706
Add imapbackup
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Jan 21 17:45:43 2020 +0100 (2020-01-21) |
parents | c10a3037b056 |
children | 750962244111 |
files | encfs/stuff/gcc44.patch imapbackup/receipt |
line diff
1.1 --- a/encfs/stuff/gcc44.patch Tue Jan 21 17:20:48 2020 +0100 1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 1.3 @@ -1,11 +0,0 @@ 1.4 ---- encfs/NameIO.cpp Wed Aug 6 08:35:05 2008 1.5 -+++ encfs/NameIO.cpp Thu Aug 6 15:43:41 2009 1.6 -@@ -190,7 +190,7 @@ 1.7 - } else 1.8 - { 1.9 - bool isDotFile = (*path == '.'); 1.10 -- char *next = strchr( path, '/' ); 1.11 -+ const char *next = strchr( path, '/' ); 1.12 - int len = next ? next - path : strlen( path ); 1.13 - 1.14 - // at this point we know that len > 0
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/imapbackup/receipt Tue Jan 21 17:45:43 2020 +0100 2.3 @@ -0,0 +1,24 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="imapbackup" 2.7 +VERSION="20181228" 2.8 +GITHASH=c0328cb4d6f854e61222510bec70fa44c95d6982 2.9 +CATEGORY="network" 2.10 +SHORT_DESC="Incremental backups of IMAP mailboxes" 2.11 +MAINTAINER="pascal.bellard@slitaz.org" 2.12 +LICENSE="MIT" 2.13 +TARBALL="$PACKAGE-$VERSION.zip" 2.14 +WEB_SITE="https://taoofmac.com/space/projects/imapbackup" 2.15 +WGET_URL="https://github.com/rcarmo/imapbackup/archive/$GITHASH.zip" 2.16 +TAGS="imap backup" 2.17 + 2.18 +DEPENDS="python" 2.19 + 2.20 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.21 +genpkg_rules() 2.22 +{ 2.23 + mkdir -p $fs/usr/bin $install/usr/share/doc 2.24 + cp $src/README.md $install/usr/share/doc 2.25 + cp $src/imapbackup.py $fs/usr/bin/imapbackup 2.26 + chmod +x $fs/usr/bin/imapbackup 2.27 +}