bake
lex.yy.c
+*.gz
+*.deb
bake to ebake, which is somehow worse than the original name of eMake.
ebuild: <PENDING>
-debian: <PENDING> (perhaps forever)
+
+debian: provided in repo --
+./deb/package; dpkg -i deb/bake.deb # this installs only bake.
--- /dev/null
+bake (20240101) stable; urgency=low
+
+ [ Emil Williams ]
+ * Created Debian Package
+
+ -- Emil Williams <emilemilemil@cock.li> Sat, 04 Jan 2025 22:34:26 +0000
--- /dev/null
+Source: bake
+Version: 20250101
+Section: devel
+Priority: optional
+Maintainer: Emil Williams <emilemilemil@cock.li>
+Package: bake
+Architecture: amd64
+Depends: libc-bin (>= 2)
+Description: Run Embedded Shell Scripts
+ It executes with /bin/sh the command after a "@BAKE " to the end of
+ the line (a UNIX newline: '\n') or to the first instance of @STOP.
--- /dev/null
+All source code and documentation under Bake is released to the Public Domain.
--- /dev/null
+#!/bin/sh
+cd "$(dirname "$(readlink -f $0)")" || exit
+
+mkdir -p bake/DEBIAN/ bake/usr/bin/ bake/usr/share/man/man1/ bake/usr/share/doc/
+
+cp ../bake bake/usr/bin/
+cp ../bake.1 bake/usr/share/man/man1/
+cp copyright changelog bake/usr/share/doc/
+cp control bake/DEBIAN/
+
+gzip -n9 bake/usr/share/man/man1/bake.1
+gzip -n9 bake/usr/share/doc/changelog
+
+strip bake/usr/bin/bake
+
+dpkg-deb --root-owner-group --build bake