From b830e75fad587e5222eaf07659e7ee39deddf3d0 Mon Sep 17 00:00:00 2001 From: Francois Fleuret Date: Tue, 7 Apr 2009 09:24:52 +0200 Subject: [PATCH] Cosmetics. --- mkdeb.sh | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/mkdeb.sh b/mkdeb.sh index dff4880..63e225e 100755 --- a/mkdeb.sh +++ b/mkdeb.sh @@ -29,12 +29,13 @@ VERSION=1.0-R`git log|grep ^commit|wc -l` PACKAGE=/tmp/selector_${VERSION}_i386.deb - +BIN_PATH="usr/bin" +MAN_PATH="usr/share/man/man1" make -k TMP=`mktemp -d /tmp/deb.XXXXXX` -for d in DEBIAN usr/bin usr/share/man/man1; do +for d in DEBIAN ${BIN_PATH} ${MAN_PATH}; do mkdir -p ${TMP}/${d} done @@ -46,19 +47,19 @@ Version: ${VERSION} Maintainer: Francois Fleuret Architecture: i386 Depends: ${LIB_DEPENDS} -Description: A command line for dynamic string-matching. +Description: A command line for dynamic string-matching This is a command line for dynamic string selection. As you type a - list of strings separated by ';' or a regexp, the display is updated - in real time to show only the lines with matching content. The main - usage of selector is as an efficient search in the shell command + list of substrings separated by ';', or a regexp, the display is + updated in real time to show only the matching lines. The main usage + of selector is as an efficient search in the shell command history. With the correct option, it will inject the selected line into the virtual tty input buffer, hence allowing the user to edit the line and execute it as a standard command. EOF -cp ./selector ${TMP}/usr/bin -cp ./selector.1 ${TMP}/usr/share/man/man1 -gzip ${TMP}/usr/share/man/man1/selector.1 +cp ./selector ${TMP}/${BIN_PATH} +cp ./selector.1 ${TMP}/${MAN_PATH} +gzip ${TMP}/${MAN_PATH}/selector.1 dpkg-deb --build ${TMP} ${PACKAGE} -- 2.20.1