File tree 3 files changed +13
-15
lines changed
3 files changed +13
-15
lines changed Original file line number Diff line number Diff line change 1
- bashlib 0.2
1
+ bashlib 0.5
2
2
3
3
Installation of bashlib is relatively straightforward:
4
4
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
14
9
15
10
Using bashlib in your CGI scripts is as simple as beginning your
16
11
scripts with:
55
50
56
51
AUTHOR
57
52
58
- darren chamberlain <dlc@users.sourceforge.net >
53
+ darren chamberlain <dlc@sevenroot.org >
Original file line number Diff line number Diff line change 4
4
# @configure_input@
5
5
# ----------------------------------------------------------------------
6
6
# bashlib
7
- # Copyright (C) 2002 darren chamberlain <dlc@users.sourceforge.net >
7
+ # Copyright (C) 2002-2005 darren chamberlain <dlc@sevenroot.org >
8
8
#
9
9
# This program is free software; you can redistribute it and/or modify
10
10
# it under the terms of the GNU General Public License as published by
@@ -24,7 +24,7 @@ PREFIX = @prefix@
24
24
VERSION = @bashlib_version@
25
25
26
26
all :
27
- @@ECHO@ Nothing to build. Run make install.
27
+ ./configure
28
28
29
29
install :
30
30
@INSTALL@ bashlib $(PREFIX ) /bin
@@ -48,3 +48,6 @@ cvs-clean:
48
48
$(MAKE ) clean
49
49
@RM@ -f configure
50
50
@RM@ -f bashlib-$(VERSION ) .tar.gz
51
+
52
+ distclean :
53
+ $(MAKE ) cvs-clean
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ dnl ----------------------------------------------------------------------
3
3
dnl $Id$
4
4
dnl ----------------------------------------------------------------------
5
5
dnl bashlib
6
- dnl Copyright (C) 2002 darren chamberlain <dlc@users.sourceforge.net >
6
+ dnl Copyright (C) 2002-2005 darren chamberlain <dlc@sevenroot.org >
7
7
dnl
8
8
dnl This program is free software; you can redistribute it and/or modify
9
9
dnl it under the terms of the GNU General Public License as published by
@@ -24,7 +24,7 @@ AC_REVISION($Revision$)
24
24
25
25
dnl bashlib version
26
26
AC_SUBST(bashlib_version)dnl
27
- bashlib_version=0.4
27
+ bashlib_version=0.5
28
28
29
29
AC_INIT(bashlib.in)
30
30
You can’t perform that action at this time.
0 commit comments