os_installation.c (1855B)
1 /* 2 This file is part of Anastasis-Gtk. 3 Copyright (C) 2023 Taler Systems SA 4 5 Anastasis-Gtk is free software; you can redistribute it and/or modify 6 it under the terms of the GNU General Public License as published 7 by the Free Software Foundation; either version 3, or (at your 8 option) any later version. 9 10 Anastasis-Gtk is distributed in the hope that it will be useful, but 11 WITHOUT ANY WARRANTY; without even the implied warranty of 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 General Public License for more details. 14 15 You should have received a copy of the GNU General Public License 16 along with Anastasis-Gtk; see the file COPYING. If not, write to the 17 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 18 Boston, MA 02110-1301, USA. 19 */ 20 21 /** 22 * @file os_installation.c 23 * @brief initialize libgnunet OS subsystem for Anastasis-Gtk. 24 * @author Christian Grothoff 25 */ 26 #include "anastasis_gtk_config.h" 27 #include <gnunet/gnunet_util_lib.h> 28 #include "anastasis_gtk_util.h" 29 30 /** 31 * Default project data used for installation path detection 32 * for GNU Anastasis-Gtk. 33 */ 34 static const struct GNUNET_OS_ProjectData anastasis_gtk_pd = { 35 .libname = "libanastasisgtkutil", 36 .project_dirname = "anastasis-gtk", 37 .binary_name = "anastasis-gtk", 38 .env_varname = "ANASTASIS_GTK_PREFIX", 39 .base_config_varname = "ANASTASIS_GTK_BASE_CONFIG", 40 .bug_email = "anastasis@lists.gnu.org", 41 .homepage = "https://anastasis.lu/", 42 .config_file = "anastasis-gtk.conf", 43 .user_config_file = "~/.config/anastasis-gtk.conf", 44 .version = PACKAGE_VERSION, 45 .is_gnu = 1, 46 .gettext_domain = "anastasis-gtk", 47 .gettext_path = NULL, 48 }; 49 50 51 const struct GNUNET_OS_ProjectData * 52 ANASTASIS_GTK_project_data (void) 53 { 54 return &anastasis_gtk_pd; 55 } 56 57 58 /* end of os_installation.c */