summaryrefslogtreecommitdiffhomepage
path: root/configure
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2020-01-25 19:52:44 +0000
committermidipix <writeonce@midipix.org>2020-05-01 19:03:04 +0000
commit8524cb9777da57ee070d5971e9426165daf96fb2 (patch)
treef8ff21491b975947a5781308ab9ded631755e3ba /configure
parent884c978518ca29b44ec5f0638c3ca1131f6b7adb (diff)
downloadmmglue-8524cb9777da57ee070d5971e9426165daf96fb2.tar.bz2
mmglue-8524cb9777da57ee070d5971e9426165daf96fb2.tar.xz
build system: configure: added --srcinfo,--srcsite,--pgprkey,--pgpskey support.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure22
1 files changed, 22 insertions, 0 deletions
diff --git a/configure b/configure
index 196c2d7..62c2b11 100755
--- a/configure
+++ b/configure
@@ -124,6 +124,12 @@ init_vars()
mb_custom_cfgdefs_args=''
mb_custom_cfgdefs_space=''
+ mb_srcinfo='$(PROJECT_DIR)/project/srcdist/srcinfo.in'
+ mb_srcsite='localhost'
+
+ mb_pgprkey='!!VARIABLE_NOT_SET!!'
+ mb_pgpskey='!!VARIABLE_NOT_SET!!'
+
sfrt_impl_dir=$mb_project_dir/sofort
sfrt_config_dir=$sfrt_impl_dir/config
sfrt_core_dir=$sfrt_impl_dir/core
@@ -1018,6 +1024,22 @@ for arg ; do
;;
# srcinfo
+ --srcinfo=*)
+ mb_srcinfo=${arg#*=}
+ ;;
+
+ --srcsite=*)
+ mb_srcsite=${arg#*=}
+ ;;
+
+ --pgprkey=*)
+ mb_pgprkey=${arg#*=}
+ ;;
+
+ --pgpskey=*)
+ mb_pgpskey=${arg#*=}
+ ;;
+
--rawball=*)
mb_rawball=${arg#*=}
;;