commit dd30c99c346b0eced22843dcc139f0c4330bcba6
parent 2b4be20507fee93fc165a550cd0cb8f81dcad05d
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date: Mon, 15 May 2023 18:41:30 +0200
Version 0.2
Diffstat:
4 files changed, 15 insertions(+), 4 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -1,2 +1 @@
sdep
-sdep-*
diff --git a/Makefile b/Makefile
@@ -28,13 +28,14 @@ debug:
${CC} ${CFLAGS} -o sdep sdep.c
clean:
- rm -rf sdep sdep-${VERSION}.tar.gz
+ rm -rf sdep
dist: clean
mkdir -p sdep-${VERSION}
cp -R LICENSE Makefile README.md sdep.1 sdep.c sdep-${VERSION}
tar -cf sdep-${VERSION}.tar sdep-${VERSION}
gzip sdep-${VERSION}.tar
+ mv sdep-${VERSION}.tar.gz releases/
rm -rf sdep-${VERSION}
install: all
diff --git a/README.md b/README.md
@@ -20,8 +20,11 @@ date(1). The dates should correspond to a unique minute in time.
## Installation
-Edit the Makefile to match your local configuration and type `make
-install`.
+1. Either clone the repository or download the latest release version
+ from the `releases` folder (warning: the release archive does not
+ contain the customization scripts).
+2. Edit the Makefile to match your local configuration and type
+ `make install`.
## Examples
@@ -101,3 +104,11 @@ For example check that the folder SDEPDATA in Makefile suits you.
Most of the scripts rely on the `-d` option of the GNU date utility,
so you should change that too if you are on a BSD system or on MacOS.
+
+## Version history
+
+| Version | Release date | Comment |
+|:--------|:-------------|:---------------:|
+| 0.2 | 2023-05-23 | Minor fixes |
+| 0.1 | 2021-05-08 | Initial release |
+
diff --git a/releases/sdep-0.2.tar.gz b/releases/sdep-0.2.tar.gz
Binary files differ.