diff --git a/configure.ac b/configure.ac index 57da221..feecc10 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ dnl -*- Autoconf -*- -AC_INIT(msg, 0.1) +AC_INIT(msg-cli, 0.1) AC_SUBST(HVERSION, "\"0.1\"") AC_SUBST(AUTHOR, "\"Chad Nelson\"") AC_SUBST(COPYRIGHT, "'(2023)") diff --git a/guix.scm b/guix.scm index 2079964..36541f3 100644 --- a/guix.scm +++ b/guix.scm @@ -13,7 +13,7 @@ (srfi srfi-1)) (package - (name "msg") + (name "msg-cli") (version "0.1") (source (local-file diff --git a/hall.scm b/hall.scm index c70bed6..6fbddb4 100644 --- a/hall.scm +++ b/hall.scm @@ -1,6 +1,7 @@ (hall-description (name "msg") (prefix "") + (postfix "cli") (version "0.1") (author "Chad Nelson") (email "") diff --git a/msg/hconfig.scm b/msg/hconfig.scm index 8722b05..bcd20d6 100644 --- a/msg/hconfig.scm +++ b/msg/hconfig.scm @@ -21,7 +21,7 @@ (define %copyright '(2023)) -(define %gettext-domain "msg") +(define %gettext-domain "msg-cli") (define G_ identity)