The Linux Software Map (lsm) file is not maintained, and the test
scripts where more confusing than advicing.
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
dist_man_MANS = getopt.1
exampledir = $(datadir)/getopt/
-dist_example_SCRIPTS = getopt-parse.bash getopt-parse.tcsh \
- getopt-test.bash getopt-test.tcsh
+dist_example_SCRIPTS = getopt-parse.bash getopt-parse.tcsh
EXTRA_DIST = README Changelog COPYING
+++ /dev/null
-Begin3
-Title: Getopt
-Version: 1.1.3
-Entered-date: 23JAN02
-Description: An improved implementation of getopt(1), a program to parse
- options within a shell script. Fully compatible with other
- getopt(1) implementations, but with many additions like
- long options and mixing of options and parameters.
-Keywords: getopt script parse bash tcsh
-Author: frodol@dds.nl (Frodo Looijaard)
-Primary-site: http://huizen.dds.nl/~frodol
- 28kB getopt-1.1.3.tar.gz
- 689 getopt-1.1.3.lsm
-Copying-policy: GPL
-End
-
+++ /dev/null
-#!/bin/bash
-if `getopt -T >/dev/null 2>&1` ; [ $? = 4 ] ; then
- echo "Enhanced getopt(1)"
-else
- echo "Old getopt(1)"
-fi
+++ /dev/null
-#!/bin/tcsh
-getopt -T >&/dev/null
-if ( $status == 4) then
- echo "Enhanced getopt(1)"
-else
- echo "Old getopt(1)"
-endif