paivana_pd.c (1641B)
1 /* 2 This file is part of Taler. 3 Copyright (C) 2025 Taler Systems SA 4 5 Taler is free software; you can redistribute it and/or modify 6 it under the terms of the GNU General Public License as 7 published by the Free Software Foundation; either version 3, 8 or (at your option) any later version. 9 10 Taler 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. 13 See the GNU General Public License for more details. 14 15 You should have received a copy of the GNU General Public 16 License along with Taler; see the file COPYING. If not, 17 write to the Free Software Foundation, Inc., 51 Franklin 18 Street, Fifth Floor, Boston, MA 02110-1301, USA. */ 19 20 /** 21 * @file paivana_pd.c 22 * @brief Paivana project data 23 * @author Christian Grothoff 24 */ 25 #include "platform.h" 26 #include "paivana_pd.h" 27 28 /** 29 * Default project data used for installation path detection 30 * for Twister. 31 */ 32 static const struct GNUNET_OS_ProjectData paivana_project_data = { 33 .libname = "libpaivana", 34 .project_dirname = "paivana", 35 .binary_name = "paivana-httpd", 36 .version = PACKAGE_VERSION " " VCS_VERSION, 37 .env_varname = "PAIVANA_PREFIX", 38 .base_config_varname = "PAIVANA_BASE_CONFIG", 39 .bug_email = "taler@gnu.org", 40 .homepage = "http://www.gnu.org/s/taler/", 41 .config_file = "paivana.conf", 42 .user_config_file = "~/.config/paivana.conf", 43 .is_gnu = 1, 44 .gettext_domain = "paivana", 45 .gettext_path = NULL, 46 .agpl_url = GNUNET_AGPL_URL, 47 }; 48 49 50 const struct GNUNET_OS_ProjectData * 51 PAIVANA_project_data () 52 { 53 return &paivana_project_data; 54 }