summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-13 20:48:51 +0200
committerPaul Buetow <paul@buetow.org>2026-02-13 20:48:51 +0200
commit7a90962d2e940f50f807448d2d4c23c2631e2922 (patch)
tree4f7b7498c973126aefe32dd60b8ccbd0ccc9ef68
parentbd095a1b9a2027a1ff43fe4b6fa04d0354ca062c (diff)
Rename justfile to Justfile and remove manpage generation
- Rename justfile to Justfile (conventional naming) - Remove documentation target from Justfile - Deprecated manpage functionality in favor of README.md
-rw-r--r--Justfile (renamed from justfile)8
1 files changed, 2 insertions, 6 deletions
diff --git a/justfile b/Justfile
index d8e117a..5f5385c 100644
--- a/justfile
+++ b/Justfile
@@ -1,7 +1,7 @@
NAME := "loadbars"
VERSION := "0.7.5"
-default: version documentation perltidy
+default: version perltidy
version:
echo {{VERSION}} > .version
@@ -15,10 +15,6 @@ perltidy:
perltidy -b {{NAME}}
find . -name \*.bak -delete
-documentation:
- pandoc --standalone --to man ./README.md --metadata title="loadbars" --metadata section="1" --metadata date="$(date +%Y-%m-%d)" > ./docs/{{NAME}}.1
- pandoc --from markdown --to plain ./README.md > ./docs/{{NAME}}.txt
-
install DESTDIR="":
#!/usr/bin/env bash
if [ ! -d "{{DESTDIR}}/usr/bin" ]; then
@@ -53,7 +49,7 @@ clean:
rm -Rf nytprof
fi
-release: version documentation perltidy
+release: version perltidy
git add -A
git commit -m 'New release {{VERSION}}'
git tag {{VERSION}}