1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-11-05 06:25:00 +00:00
dotfiles/.config/fish/functions/build.fish

14 lines
271 B
Fish
Raw Normal View History

# Defined in /tmp/fish.SBvuh1/build.fish @ line 2
2018-11-15 01:01:37 +00:00
function build
s printf \
gp
2018-11-15 01:01:37 +00:00
./autogen.sh
./configure --prefix=/usr
cmake -DCMAKE_INSTALL_PREFIX=/usr .
2018-11-15 01:01:37 +00:00
make
s make install
meson build
ninja -C build
sudo ninja -C build install
2018-11-15 01:01:37 +00:00
end