1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- #!/bin/cat
- # $Id: INSTALL.ArchLinux.txt,v 1.6 2022/05/17 14:31:44 gilles Exp gilles $
- This documentation is also located online at
- https://imapsync.lamiral.info/INSTALL.d/
- https://imapsync.lamiral.info/INSTALL.d/INSTALL.ArchLinux.txt
- ==========================================
- === Installing imapsync on ArchLinux ===
- ==========================================
- Thanks to Aldo Villagra!
- ---------------------------------
- With yaourt and AUR repositories
- ---------------------------------
- pacman -S --needed base-devel git
- git clone https://aur.archlinux.org/package-query.git
- cd package-query
- makepkg -si
- cd ..
- git clone https://aur.archlinux.org/yaourt.git
- cd yaourt
- makepkg -si
- cd ..
- After you have installed Yaourt, you can install imapsync:
- yaourt -S --needed imapsync
- That's all folks!
- -----------------------------------------------
- With the "pacman" and the standard repositories
- community/
- extra/
- -----------------------------------------------
- Commands to run:
- pacman -S --needed make lsb-release cpanminus wget
-
- pacman -S --needed community/perl-cgi \
- extra/perl-crypt-openssl-rsa \
- extra/perl-data-uniqid \
- extra/perl-digest-hmac \
- community/perl-dist-checkconflicts \
- extra/perl-file-copy-recursive \
- extra/perl-io-socket-inet6 \
- extra/perl-io-socket-ssl \
- community/perl-io-tee \
- community/perl-json \
- extra/perl-html-parser \
- extra/perl-libwww \
- community/perl-module-implementation \
- community/perl-module-runtime \
- community/perl-module-scandeps \
- extra/perl-net-ssleay \
- community/perl-package-stash \
- community/perl-package-stash-xs \
- community/perl-parse-recdescent \
- community/perl-readonly \
- community/perl-regexp-common \
- extra/perl-term-readkey \
- community/perl-test-fatal \
- community/perl-test-mockobject \
- extra/perl-test-pod \
- community/perl-test-requires \
- community/perl-test-nowarnings \
- community/perl-test-deep \
- extra/perl-try-tiny \
- extra/perl-uri \
- community/perl-file-tail
- Mandatory Perl modules via cpanm:
- cpanm Mail::IMAPClient \
- Unicode::String \
- Sys::MemInfo \
- Encode::IMAPUTF7
- Other Perl modules, needed sometimes:
- cpanm Authen::NTLM \
- JSON::WebToken \
- JSON::WebToken::Crypt::RSA \
- Test::Mock::Guard \
- Test::Warn \
- PAR::Packer \
- Proc::ProcessTable
-
-
|