Skip to content

Instantly share code, notes, and snippets.

@meyt
Created May 3, 2022 12:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save meyt/642d3d950f0a04ab89d22365015a70a1 to your computer and use it in GitHub Desktop.
Save meyt/642d3d950f0a04ab89d22365015a70a1 to your computer and use it in GitHub Desktop.
jcal install script on Debian (tested on debian11)
#!/bin/bash
sudo apt install -y build-essential autotools-dev automake libtool libreadline-dev
git clone --depth=1 https://github.com/persiancal/jcal.git
cd jcal/sources
bash ./autogen.sh
./configure --prefix=/usr
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment