diff --git a/Golden_Repo/f/forma/forma-0.1.6-foss2022a.eb b/Golden_Repo/f/forma/forma-0.1.6-foss2022a.eb
new file mode 100644
index 0000000000000000000000000000000000000000..a47abea4a98a799b9282d24c6d8252fccc8512e1
--- /dev/null
+++ b/Golden_Repo/f/forma/forma-0.1.6-foss2022a.eb
@@ -0,0 +1,34 @@
+# Copyright 2022 Computer Architecture and VLSI Systems (CARV) Laboratory
+# SPDX-License-Identifier:  	BSD-3-Clause
+easyblock = 'PythonPackage'
+
+name = 'forma'
+version = '0.1.6'
+homepage = 'https://github.com/CARV-ICS-FORTH/foRMA'
+description = "Initial test for easybuild foRMA"
+
+toolchain = {'name': 'foss', 'version': '2022a'}
+
+local_forma_archive_filename = f"forma_archive_{version}.tar.gz"
+sources = [{
+    'filename': local_forma_archive_filename,
+    'git_config': {
+        'url': 'https://gitlab.jsc.fz-juelich.de/deep-sea/wp3/software',
+        'repo_name': 'forma',
+        'recursive': True,
+        'tag': 'v' + version,
+        'keep_git_dir': True
+    },
+}]
+checksums = [None]
+
+dependencies = [
+    ('Python', '3.10.4'),
+]
+
+use_pip_for_deps = True
+use_pip = True
+
+options = {'modulename': 'forma'}
+
+moduleclass = 'tools'