diff --git a/Golden_Repo/a/ARPACK-NG/ARPACK-NG-3.8.0-gpsmkl-2022a.eb b/Golden_Repo/a/ARPACK-NG/ARPACK-NG-3.8.0-gpsmkl-2022a.eb
new file mode 100644
index 0000000000000000000000000000000000000000..98d08eba5ede65e2ef900cb3305ea1a6049b2924
--- /dev/null
+++ b/Golden_Repo/a/ARPACK-NG/ARPACK-NG-3.8.0-gpsmkl-2022a.eb
@@ -0,0 +1,35 @@
+easyblock = 'ConfigureMake'
+
+name = 'arpack-ng'
+version = "3.8.0"
+
+homepage = 'https://github.com/opencollab/arpack-ng'
+description = """ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems."""
+
+toolchain = {'name': 'gpsmkl', 'version': '2022a'}
+toolchainopts = {'pic': True, 'usempi': True}
+
+
+source_urls = ['https://github.com/opencollab/arpack-ng/archive/']
+sources = ['%(version)s.tar.gz']
+checksums = ['ada5aeb3878874383307239c9235b716a8a170c6d096a6625bfd529844df003d']
+
+builddependencies = [
+    ('Autotools', '20220317'),
+    ('pkg-config', '1.8.0'),
+]
+
+dependencies = [
+    ('Eigen', '3.4.0')
+]
+
+preconfigopts = "sh bootstrap && "
+configopts = '--enable-mpi --with-pic --with-blas="$LIBBLAS" --with-lapack="$LIBLAPACK"'
+
+sanity_check_paths = {
+    'files': ["lib64/libarpack.la", "lib64/libarpack.%s" % SHLIB_EXT,
+              "lib64/libparpack.la", "lib64/libparpack.%s" % SHLIB_EXT],
+    'dirs': []
+}
+
+moduleclass = 'numlib'