From dfa11bd3cb0d9ccfa7f7b8fac8d9cab731194fda Mon Sep 17 00:00:00 2001 From: sev Date: Sat, 9 May 2020 04:21:13 -0500 Subject: [PATCH] testing/motd: new aport --- .gitignore | 3 +++ testing/motd/APKBUILD | 21 +++++++++++++++++++++ testing/motd/COPYING | 15 +++++++++++++++ testing/motd/motd | 2 ++ 4 files changed, 41 insertions(+) create mode 100644 .gitignore create mode 100644 testing/motd/APKBUILD create mode 100644 testing/motd/COPYING create mode 100755 testing/motd/motd diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e24cce0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +src/ +build/ +pkg/ diff --git a/testing/motd/APKBUILD b/testing/motd/APKBUILD new file mode 100644 index 0000000..8766e15 --- /dev/null +++ b/testing/motd/APKBUILD @@ -0,0 +1,21 @@ +# Contributor: sev +# Maintainer: sev +pkgname=motd +pkgver=1.0.0 +pkgrel=0 +pkgdesc="Write the result of \`uname -a' to /etc/motd daily" +url="https://git.sev.monster/~sev/alpine-local" +arch="noarch" +license="WTFPL" +subpackages="$pkgname-doc" +source="motd COPYING" +options="!check" + +package() { + # Replace with proper package command(s) + install -Dm644 motd "$pkgdir"/etc/periodic/daily/motd + install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING +} + +sha512sums="e109f378b89fc6a61e72ce53101867976996a5643e1e68acc7a5b1666f073d34e40a91d6223bed20c8f17a62314acdae670385aa26c6887e6d74e15df2d09bcb motd +9af1142d329fc79e9bc947435d572f82c67827bc9f267b6d253561331c3a3b6dabdc72ceeab91be0683678245376d91d48f7f1902d733d9db8d80434e1e5a3a9 COPYING" diff --git a/testing/motd/COPYING b/testing/motd/COPYING new file mode 100644 index 0000000..77dea88 --- /dev/null +++ b/testing/motd/COPYING @@ -0,0 +1,15 @@ + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2004 Sam Hocevar + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. + + diff --git a/testing/motd/motd b/testing/motd/motd new file mode 100755 index 0000000..8e4a51d --- /dev/null +++ b/testing/motd/motd @@ -0,0 +1,2 @@ +#!/bin/sh +uname -a > /etc/motd -- 2.46.2