1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-11-10 08:54:54 +00:00
dotfiles/.config/fish/functions/build.fish
2018-11-14 20:01:37 -05:00

11 lines
180 B
Fish
Executable file

# Defined in /tmp/fish.XYALhp/build.fish @ line 2
function build
s printf \
g pull
./autogen.sh
./configure --prefix=/usr
cmake .
make
s make install
end