X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=mkdeb.sh;h=55ef95efb435ae47aa013d52316dabe60d6dd0a2;hb=cda5c93df1c5cfe6f22a41e35bc1719a824d1e63;hp=415678b2231dc43d347dc2819bcb5d805dfed538;hpb=bfd4b0ba81b348e616290deadccd9fa563879126;p=selector.git diff --git a/mkdeb.sh b/mkdeb.sh index 415678b..55ef95e 100755 --- a/mkdeb.sh +++ b/mkdeb.sh @@ -1,13 +1,11 @@ #!/bin/bash -# Depends: ${shlibs:Depends} - # # selector is a simple shell command for selection of strings with a # dynamic pattern-matching. # # Copyright (c) 2009 Francois Fleuret -# Written by Francois Fleuret +# Written by Francois Fleuret # # This file is part of selector. # @@ -27,39 +25,41 @@ # This script creates the Debian package. The way it does it is # probably not very conventional. I am open to suggestions. -VERSION=1.0 +VERSION=1.0-R$(cat REVISION_NUMBER) PACKAGE=/tmp/selector_${VERSION}_i386.deb -make -k +BIN_PATH="usr/bin" +MAN_PATH="usr/share/man/man1" + +make -j -k || exit 1 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 -# LIBS=`ldd selector | grep "=> /" | awk '{print $3}'` -# DEPS=`for l in ${LIBS}; do dpkg -S $l; done | cut -f 1 -d: | sort | uniq` +LIB_DEPENDS=$(dpkg-shlibdeps -O ./selector | grep Depends | sed -e "s/^.*Depends=//") cat > ${TMP}/DEBIAN/control < Architecture: i386 -Depends: libncurses5, libstdc++6, libc6, libgcc1 -Description: A command line for dynamic string-matching. +Depends: ${LIB_DEPENDS} +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 ';', the display is updated in real time - to show only the lines containing all the said strings. 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. + into the 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}