mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 21:03:12 +00:00
13 lines
236 B
Bash
Executable file
13 lines
236 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Terminate on error
|
|
set -e
|
|
|
|
rm -Rf /tmp/fish_fish_deb
|
|
mkdir /tmp/fish_fish_deb
|
|
git archive --format=tar fish_fish | tar -x -C /tmp/fish_fish_deb
|
|
cd /tmp/fish_fish_deb
|
|
autoconf
|
|
./configure
|
|
make
|
|
sudo checkinstall make install
|