blob: f8946ae2d93220b3deab6eb8177cbd75dddbd379 (
plain)
1
2
3
4
5
6
7
8
|
#!/usr/bin/env sh
git clone --depth 1 --branch emacs-27.2 master git://git.sv.gnu.org/emacs.git .;
./configure --with-xwidgets -with-threads --with-harfbuzz --with-jpeg \
--with-json --with-modules;
make;
sudo make install;
|