Move the service files to the occ-control repo

To align with the OpenBMC direction, the OCC service files are being
moved into the owning repo, instead of in the meta-openpower directories
in openbmc.

Change-Id: Icef03a173249dd559f7ae41a8026b11656004d53
Signed-off-by: Chris Cain <cjcain@us.ibm.com>
diff --git a/service_files/meson.build b/service_files/meson.build
new file mode 100644
index 0000000..4bbce89
--- /dev/null
+++ b/service_files/meson.build
@@ -0,0 +1,15 @@
+unit_files = [
+   'org.open_power.OCC.Control.service',
+   'op-occ-disable@.service',
+   'op-occ-enable@.service'
+]
+
+foreach u : unit_files
+    configure_file(
+        copy: true,
+        input: u,
+        install: true,
+        install_dir: systemd_system_unit_dir,
+        output: u,
+        )
+endforeach