1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-09-19 00:20:28 +00:00
dotfiles/.local/bin/build

14 lines
251 B
Plaintext
Raw Normal View History

2020-08-22 04:19:22 +00:00
#!/bin/bash
sudo printf ''
git pull
./autogen.sh --prefix=/usr
./configure --prefix=/usr
cmake -DCMAKE_INSTALL_PREFIX=/usr .
sudo printf ''
make -j8
sudo make install
meson --prefix=/usr build
sudo printf ''
ninja -C build
sudo ninja -C build install