2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-02-15 13:38:38 +00:00
fish-shell/build_tools/make_deb.sh

19 lines
496 B
Bash
Raw Normal View History

#!/bin/sh
2012-05-22 00:09:39 -07:00
# Terminate on error
set -e
2012-05-24 23:58:16 -07:00
sudo rm -Rf /tmp/fishfish
mkdir /tmp/fishfish
git archive --format=tar fish_fish | tar -x -C /tmp/fishfish
mkdir /tmp/fishfish/doc-pak
cp README INSTALL CHANGELOG release_notes.html /tmp/fishfish/doc-pak/
cp build_tools/description-pak /tmp/fishfish/
cd /tmp/fishfish
2012-05-22 00:09:39 -07:00
autoconf
./configure
2012-05-24 23:58:16 -07:00
make -j 3
sudo checkinstall --default --pakdir ~/fish_built/ --pkgversion 0.9 make install
2012-05-25 00:47:18 -07:00
mv ~/fish_built/fishfish_0.9-1_i386.deb ~/fish_built/fishfish_0.9_i386.deb
2012-05-24 23:58:16 -07:00