meson: reformat with meson formatter

Apply the `meson format` results.

Change-Id: Id3da51b0ab2cd90f7bb79bd7b613b2226672a802
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/subprojects/libcr51sign/src/meson.build b/subprojects/libcr51sign/src/meson.build
index ff33a0c..c84cdbf 100644
--- a/subprojects/libcr51sign/src/meson.build
+++ b/subprojects/libcr51sign/src/meson.build
@@ -12,49 +12,48 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-libcr51sign_deps = [
-  dependency('libcrypto'),
-]
+libcr51sign_deps = [dependency('libcrypto')]
 
-libcr51sign_cflags = [
-  '-Wno-pedantic',
-  '-Wno-implicit-fallthrough'
-]
+libcr51sign_cflags = ['-Wno-pedantic', '-Wno-implicit-fallthrough']
 
 libcr51sign_pre = declare_dependency(
-  include_directories: libcr51sign_includes,
-  compile_args: libcr51sign_cflags,
-  dependencies: libcr51sign_deps)
+    include_directories: libcr51sign_includes,
+    compile_args: libcr51sign_cflags,
+    dependencies: libcr51sign_deps,
+)
 
 libcr51sign_lib = library(
-  'cr51sign',
-  'libcr51sign.c',
-  'libcr51sign_support.c',
-  'libcr51sign_mauv.c',
-  dependencies: libcr51sign_pre,
-  c_args: [
-    # Temporarily ignore until updates land
-    '-Wno-error=deprecated-declarations',
-  ],
-  implicit_include_directories: false,
-  version: meson.project_version(),
-  install: true)
+    'cr51sign',
+    'libcr51sign.c',
+    'libcr51sign_support.c',
+    'libcr51sign_mauv.c',
+    dependencies: libcr51sign_pre,
+    c_args: [
+        # Temporarily ignore until updates land
+        '-Wno-error=deprecated-declarations',
+    ],
+    implicit_include_directories: false,
+    version: meson.project_version(),
+    install: true,
+)
 
 libcr51sign_dep = declare_dependency(
-  link_with: libcr51sign_lib,
-  dependencies: libcr51sign_pre)
+    link_with: libcr51sign_lib,
+    dependencies: libcr51sign_pre,
+)
 
 libcr51sign_reqs = []
 foreach dep : libcr51sign_deps
-  if dep.type_name() == 'pkgconfig'
-    libcr51sign_reqs += dep
-  endif
+    if dep.type_name() == 'pkgconfig'
+        libcr51sign_reqs += dep
+    endif
 endforeach
 
 import('pkgconfig').generate(
-  libcr51sign_lib,
-  name: 'libcr51sign',
-  description: 'CR51 signing verification utilities',
-  requires: libcr51sign_reqs,
-  extra_cflags: libcr51sign_cflags,
-  version: meson.project_version())
+    libcr51sign_lib,
+    name: 'libcr51sign',
+    description: 'CR51 signing verification utilities',
+    requires: libcr51sign_reqs,
+    extra_cflags: libcr51sign_cflags,
+    version: meson.project_version(),
+)