aboutsummaryrefslogtreecommitdiffhomepage
path: root/build_tools/make_deb.sh
diff options
context:
space:
mode:
authorGravatar David Adam <zanchey@ucc.gu.uwa.edu.au>2016-05-22 22:54:00 +0000
committerGravatar David Adam <zanchey@ucc.gu.uwa.edu.au>2016-05-22 22:54:44 +0000
commit85e701f42212fb51ba260d98555dc2763360ed83 (patch)
treeb17b9f2ec94909c80de5c0429aca568d542b3fd3 /build_tools/make_deb.sh
parent5accc7c6c5b2234998d1a88de2dfeb1057bd5507 (diff)
build_tools: drop make_deb and description-pak
[ci skip]
Diffstat (limited to 'build_tools/make_deb.sh')
-rwxr-xr-xbuild_tools/make_deb.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/build_tools/make_deb.sh b/build_tools/make_deb.sh
deleted file mode 100755
index 1bf09f0a..00000000
--- a/build_tools/make_deb.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-# Terminate on error
-set -e
-
-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
-autoconf
-./configure
-make -j 3
-sudo checkinstall --default --pakdir ~/fish_built/ --pkgversion 0.9 make install
-mv ~/fish_built/fishfish_0.9-1_i386.deb ~/fish_built/fishfish_0.9_i386.deb
-