@@ -0,0 +1,6 @@
+install_data([
+ 'postprocessd single (quick)',
+ 'postprocessd stacked (slow)'
+ ],
+ install_dir: get_option('datadir') / 'megapixels/postprocessor.d/',
+ install_mode: 'rwxr-xr-x')
@@ -0,0 +1,3 @@
+#!/bin/sh
+postprocess-single "$1/1.dng" "$2".jpg "$3"
+echo "$2".jpg
@@ -0,0 +1,2 @@
+postprocessd "$@"
@@ -18,6 +18,9 @@ executable('postprocess-single', 'single.c','postprocess.c', 'stacker.cpp', 'sta
dependencies: [raw, tiff, jpeg, exif, cv],
install: true)
+# Megapixels integration scripts
+subdir('megapixels')
+
# Build and install the man pages
scdoc = dependency('scdoc', native: true, required: get_option('man-pages'))
if scdoc.found()