Added 'set -e' so that the script fails if any command fails.
[selector.git] / mkdeb.sh
1 #!/bin/bash
2
3 #
4 #  selector is a simple command line utility for selection of strings
5 #  with a dynamic pattern-matching.
6 #
7 #  Copyright (c) 2009 Francois Fleuret
8 #  Written by Francois Fleuret <francois@fleuret.org>
9 #
10 #  This file is part of selector.
11 #
12 #  selector is free software: you can redistribute it and/or modify
13 #  it under the terms of the GNU General Public License version 3 as
14 #  published by the Free Software Foundation.
15 #
16 #  selector is distributed in the hope that it will be useful, but
17 #  WITHOUT ANY WARRANTY; without even the implied warranty of
18 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19 #  General Public License for more details.
20 #
21 #  You should have received a copy of the GNU General Public License
22 #  along with selector.  If not, see <http://www.gnu.org/licenses/>.
23 #
24
25 # This script creates the Debian package. The way it does it is
26 # probably not very conventional. I am open to suggestions.
27
28 set -e
29
30 VERSION=1.0-R$(cat REVISION_NUMBER)
31 PACKAGE=/tmp/selector_${VERSION}_i386.deb
32
33 BIN_PATH="usr/bin"
34 MAN_PATH="usr/share/man/man1"
35
36 make -j -k || exit 1
37
38 TMP=`mktemp -d /tmp/deb.XXXXXX`
39
40 for d in DEBIAN ${BIN_PATH} ${MAN_PATH}; do
41     mkdir -p ${TMP}/${d}
42 done
43
44 mkdir -p debian/control
45
46 LIB_DEPENDS=$(dpkg-shlibdeps -O ./selector | grep Depends | sed -e "s/^.*Depends=//")
47
48 cat > ${TMP}/DEBIAN/control <<EOF
49 Package: selector
50 Version: ${VERSION}
51 Maintainer: Francois Fleuret <francois@fleuret.org>
52 Architecture: i386
53 Depends: ${LIB_DEPENDS}
54 Description: A command line utility for dynamic string-matching
55  This is a command line utility for dynamic string selection. As you
56  type a list of substrings separated by ';', or a regexp, the display
57  is updated in real time to show only the matching lines. The main
58  usage of selector is as an efficient search in the shell command
59  history. With the correct option, it will inject the selected line
60  into the tty input buffer, hence allowing the user to edit the line
61  and execute it as a standard command.
62 EOF
63
64 cp ./selector ${TMP}/${BIN_PATH}
65 cp ./selector.1 ${TMP}/${MAN_PATH}
66 gzip ${TMP}/${MAN_PATH}/selector.1
67
68 dpkg-deb --build ${TMP} ${PACKAGE}
69
70 dpkg --contents ${PACKAGE}
71
72 rm -rf ${TMP}