Skip to content

Commit ecc4376

Browse files
author
dlc
committed
Updates for new version (0.5)
1 parent aa1d905 commit ecc4376

File tree

3 files changed

+13
-15
lines changed

3 files changed

+13
-15
lines changed

INSTALL

+6-11
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
1-
bashlib 0.2
1+
bashlib 0.5
22

33
Installation of bashlib is relatively straightforward:
44

5-
# gunzip -c bashlib-0.2.tar.gz | tar xf -
6-
# cd bashlib-0.2
7-
# sh install.sh
8-
# cp bashlib /path/to/bashlib
9-
10-
Copying the bashlib script (all the other files in the directory are
11-
extraneous once the install.sh script is run and bashlib is copied)
12-
is all that is required to install. Maybe version 0.3 will have
13-
a Makefile.
5+
# gunzip -c bashlib-0.5.tar.gz | tar xf -
6+
# cd bashlib-0.5
7+
# ./configure
8+
# make install
149

1510
Using bashlib in your CGI scripts is as simple as beginning your
1611
scripts with:
@@ -55,4 +50,4 @@ TODO
5550

5651
AUTHOR
5752

58-
darren chamberlain <dlc@users.sourceforge.net>
53+
darren chamberlain <dlc@sevenroot.org>

Makefile.in

+5-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# @configure_input@
55
# ----------------------------------------------------------------------
66
# bashlib
7-
# Copyright (C) 2002 darren chamberlain <dlc@users.sourceforge.net>
7+
# Copyright (C) 2002-2005 darren chamberlain <dlc@sevenroot.org>
88
#
99
# This program is free software; you can redistribute it and/or modify
1010
# it under the terms of the GNU General Public License as published by
@@ -24,7 +24,7 @@ PREFIX = @prefix@
2424
VERSION = @bashlib_version@
2525

2626
all:
27-
@@ECHO@ Nothing to build. Run make install.
27+
./configure
2828

2929
install:
3030
@INSTALL@ bashlib $(PREFIX)/bin
@@ -48,3 +48,6 @@ cvs-clean:
4848
$(MAKE) clean
4949
@RM@ -f configure
5050
@RM@ -f bashlib-$(VERSION).tar.gz
51+
52+
distclean:
53+
$(MAKE) cvs-clean

configure.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ dnl ----------------------------------------------------------------------
33
dnl $Id$
44
dnl ----------------------------------------------------------------------
55
dnl bashlib
6-
dnl Copyright (C) 2002 darren chamberlain <dlc@users.sourceforge.net>
6+
dnl Copyright (C) 2002-2005 darren chamberlain <dlc@sevenroot.org>
77
dnl
88
dnl This program is free software; you can redistribute it and/or modify
99
dnl it under the terms of the GNU General Public License as published by
@@ -24,7 +24,7 @@ AC_REVISION($Revision$)
2424

2525
dnl bashlib version
2626
AC_SUBST(bashlib_version)dnl
27-
bashlib_version=0.4
27+
bashlib_version=0.5
2828

2929
AC_INIT(bashlib.in)
3030

0 commit comments

Comments
 (0)