You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#!/bin/bashecho Installing dependencies
DEPS="gcc-c++ gcc cmake libboost_program_options-devel libboost_system-devel fuse-devel fuse zlib-devel"
sudo zypper install $DEPSecho"Cloning repository"
git clone https://github.com/pcloudcom/console-client.git
cd console-client
echo"Patching CMake config"
patch -p1 < ../opensuse.patch ||exit 1
cd pCloudCC/
echo Building pclsync
cd lib/pclsync/
make clean ||exit 1
make fs ||exit 1
echo Building mbedtls
cd ../mbedtls/
cmake .||exit 1
make clean
make ||exit 1
echo Building pcloudCC
cd ../..
cmake .||exit 1
make ||exit 1
echoecho Build completeechoecho To install run
echo"cd $PWD; sudo make install; sudo ldconfig"echoecho"to set up a constantly running service run the following as root:"echo"cp pcloud.service /etc/systemd/system && systemctl daemon-reload && systemctl enable pcloud && systemctl start pcloud"
Build script
patch to build w/ dynamically linked Boost
systemd unit
Note: this will work correctly IF your user already saved a password in w/
pcloudcc -s
See PR #168 for full RPM package build
The text was updated successfully, but these errors were encountered: