From 94d1d4ca398a6ba3fac238b5b122d8a3581446b9 Mon Sep 17 00:00:00 2001 From: hippoz Date: Tue, 29 Jun 2021 23:34:40 +0300 Subject: [PATCH] [new package] "hummingbird" (lightweight init system) --- hummingbird/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 hummingbird/Makefile diff --git a/hummingbird/Makefile b/hummingbird/Makefile new file mode 100644 index 0000000..6f000e6 --- /dev/null +++ b/hummingbird/Makefile @@ -0,0 +1,12 @@ +prepare: + git clone https://github.com/Sweets/hummingbird hummingbird + cd hummingbird + make +make: + make +install: + make install DESTDIR="${PREFIX}" +uninstall: + @echo "pkgmsg: hummingbird does not have a proper uninstall script" + # we would need to rm -rf ${PREFIX}/usr/lib/hummingbird + # and rm $(INSTALL) hummingbird "$(DESTDIR)/usr/bin/hummingbird" "$(DESTDIR)/usr/bin/shutdown" "$(DESTDIR)/usr/bin/reboot"