From 4857ea8947e8b0cea22170b9bbd07b0e6ae98d9d Mon Sep 17 00:00:00 2001 From: Mitchell Riedstra Date: Fri, 26 Dec 2025 16:58:13 -0500 Subject: age-plugin-se, fonts, and further minor tweaks to fedora script --- compile/age-plugin-se.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 compile/age-plugin-se.sh (limited to 'compile') diff --git a/compile/age-plugin-se.sh b/compile/age-plugin-se.sh new file mode 100755 index 0000000..a3b54a0 --- /dev/null +++ b/compile/age-plugin-se.sh @@ -0,0 +1,19 @@ +#!/bin/sh +# Plugin required to send to SE keys... +# On Fedora... +# sudo dnf install swift-lang +if [ "$(id -u)" -eq 0 ] ; then + echo "Run as a regular user" + exit 1 +fi +set -ex +codedir="${CODEDIR:-$HOME/scm}" +prefix="${PREFIX:-$HOME/.local}" +plugindir="${codedir}/age-plugin-se" +if ! [ -d "$plugindir" ] ; then + git clone https://github.com/remko/age-plugin-se "$plugindir" +fi +cd "$plugindir" +make +make PREFIX="$prefix" install +cd - -- cgit v1.2.3