Initial commit of deodorant. - deodorant - a tool to make things suck less
(HTM) git clone git://bitreich.org/deodorant git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/deodorant
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Tags
(DIR) LICENSE
---
(DIR) commit 035635879e4c396363257bd67358d4832764e902
(HTM) Author: Christoph Lohmann <20h@r-36.net>
Date: Sun, 30 Jul 2023 14:49:43 +0200
Initial commit of deodorant.
Diffstat:
A LICENSE | 21 +++++++++++++++++++++
A Makefile | 30 ++++++++++++++++++++++++++++++
A deodorant | 7 +++++++
A deodorant.1 | 41 +++++++++++++++++++++++++++++++
4 files changed, 99 insertions(+), 0 deletions(-)
---
(DIR) diff --git a/LICENSE b/LICENSE
@@ -0,0 +1,21 @@
+MIT/X Consortium License
+
+© 2023 Christoph Lohmann <20h@r-36.net>
+
+Permission is hereby granted, free of charge, to any person obtaining a
+copy of this software and associated documentation files (the "Software"),
+to deal in the Software without restriction, including without limitation
+the rights to use, copy, modify, merge, publish, distribute, sublicense,
+and/or sell copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE.
(DIR) diff --git a/Makefile b/Makefile
@@ -0,0 +1,30 @@
+# deodorant - make things suck less
+# See LICENSE file for copyright and license details.
+.POSIX:
+
+NAME = deodorant
+VERSION = 1.0
+
+PREFIX = /usr/local
+BINDIR = ${PREFIX}/bin
+MANDIR = ${PREFIX}/share/man/man1
+
+all:
+ @printf "Run make install or uninstall please.\n"
+
+install:
+ mkdir -p "${DESTDIR}${BINDIR}"
+ cp -f ${NAME} "${DESTDIR}${BINDIR}"
+ chmod 755 "${DESTDIR}${BINDIR}/${NAME}"
+ mkdir -p "${DESTDIR}${MANDIR}"
+ cp -f ${NAME}.1 "${DESTDIR}${MANDIR}"
+ chmod 644 "${DESTDIR}${MANDIR}/${NAME}.1"
+
+uninstall:
+ rm -f "${DESTDIR}${BINDIR}/${NAME}"
+ rm -f "${DESTDIR}${MANDIR}/${NAME}.1"
+
+telemetry:
+ printf "/telemetry/geomyidae/installed\r\n" | nc bitreich.org 70
+
+.PHONY: dist install uninstall
(DIR) diff --git a/deodorant b/deodorant
@@ -0,0 +1,7 @@
+#!/bin/sh
+#
+# See LICENSE for copyright.
+#
+
+rm "$@"
+
(DIR) diff --git a/deodorant.1 b/deodorant.1
@@ -0,0 +1,41 @@
+.Dd July 30, 2023
+.Dt DEODORANT 1
+.Os
+.
+.Sh NAME
+.Nm deodorant
+.Nd a tool to make things suck less
+.
+.Sh SYNOPSIS
+.Nm
+.Ek
+.
+.Sh DESCRIPTION
+.Bd -filled
+.Nm
+simply runs
+.Em rm(1).
+.
+.Sh FILES
+LICENSE
+.
+.Sh SEE ALSO
+rm(1)
+.
+.Sh HISTORY
+.Bd -filled
+The idea for deodorant came up on 2023-07-31 on #bitreich-en on
+irc.bitreichorg, while again people were discussing what
+the term 'suckless' means. Now everyone has a tool to easily make things
+suck less.
+.Ed
+.
+.Sh AUTHORS
+See LICENSE file for authors in the distribution.
+.
+.Sh LICENSE
+deodorant is released under the MIT/X Consortium License.
+.
+.Ss "Reporting Bugs"
+Report bugs to:
+.An "Christoph Lohmann" Aq 20h@R-36.net