From e54e0081d163f7177ede29b23527a6d8c0d8780e Mon Sep 17 00:00:00 2001
From: Kevin Lyda <kevin@lyda.ie>
Date: Sat, 3 May 2025 09:28:37 +0100
Subject: [PATCH] fpt notes

---
 util/.gitignore  |  1 +
 util/README.md   | 13 +++++++++++++
 util/fpt-install |  5 +++++
 3 files changed, 19 insertions(+)
 create mode 100644 util/.gitignore
 create mode 100644 util/README.md
 create mode 100755 util/fpt-install

diff --git a/util/.gitignore b/util/.gitignore
new file mode 100644
index 0000000..f5387d9
--- /dev/null
+++ b/util/.gitignore
@@ -0,0 +1 @@
+fpt
diff --git a/util/README.md b/util/README.md
new file mode 100644
index 0000000..89015b8
--- /dev/null
+++ b/util/README.md
@@ -0,0 +1,13 @@
+## Utilities
+
+A place for utilities for building / porting BULLETIN.
+
+## fpt
+
+The fpt tool is a took for porting VMS fortran to linux.  It won't do
+everything, but it's a good start.  The `fpt-install` script will untar it
+once it is downloaded.
+
+See here for how to get it:
+
+https://simconglobal.com/fpt_ref_linux_installation.html
diff --git a/util/fpt-install b/util/fpt-install
new file mode 100755
index 0000000..544c8e0
--- /dev/null
+++ b/util/fpt-install
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+tarball=fptilnx_4.311.tar.gz
+
+tar xf ~/Downloads/"$tarball"
-- 
GitLab