Radix cross Linux Package Tools

Package Tools – is a set of utilities to create, install, and update RcL packages

8 Commits   0 Branches   2 Tags
     5         kx 
     5         kx /**********************************************************************
     5         kx 
     5         kx   Copyright 2019 Andrey V.Kosteltsev
     5         kx 
     5         kx   Licensed under the Radix.pro License, Version 1.0 (the "License");
     5         kx   you may not use this file  except  in compliance with the License.
     5         kx   You may obtain a copy of the License at
     5         kx 
     5         kx      https://radix.pro/licenses/LICENSE-1.0-en_US.txt
     5         kx 
     5         kx   Unless required by applicable law or agreed to in writing, software
     5         kx   distributed under the License is distributed on an "AS IS" BASIS,
     5         kx   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
     5         kx   implied.
     5         kx 
     5         kx  **********************************************************************/
     5         kx 
     5         kx #ifndef _DEFS_H_
     5         kx #define _DEFS_H_
     5         kx 
     5         kx #ifdef __cplusplus
     5         kx extern "C" {
     5         kx #endif
     5         kx 
     5         kx 
     5         kx #define SETUP_DB_PATH     "var/lib/" DISTRO_NAME
     5         kx #define PACKAGES_PATH     SETUP_DB_PATH "/packages"
     5         kx #define REMOVED_PKGS_PATH SETUP_DB_PATH "/removed-packages"
     5         kx #define SETUP_PATH        SETUP_DB_PATH "/setup"
     5         kx #define LOG_PATH          SETUP_DB_PATH
     5         kx #define SETUP_LOG_FILE    "/setup.log"            /* : used by: update-package, remove-package, install-package.   */
     5         kx #define LOG_FILE          "/" PROGRAM_NAME ".log" /* : used by: check-requires, check-package, check-db-integrity. */
     5         kx 
     5         kx 
     5         kx #define DO_NOT_WARN_ABOUT_EMPTY_REQUIRES       (1)
     5         kx #define DO_NOT_WARN_ABOUT_EMPTY_RESTORE_LINKS  (1)
     5         kx #define DO_NOT_WARN_ABOUT_SERVICE_FILES        (1)
     5         kx #define DO_NOT_WARN_ABOUT_OPT_PKGINFO_ITEMS    (1)
     5         kx 
     5         kx #define DO_NOT_PRINTOUT_INFO    (1)
     5         kx 
     5         kx #define DESCRIPTION_NUMBER_OF_LINES  11
     5         kx #define DESCRIPTION_LENGTH_OF_LINE   68
     5         kx 
     5         kx 
     5         kx #ifdef __cplusplus
     5         kx }  /* ... extern "C" */
     5         kx #endif
     5         kx 
     5         kx #endif /* _DEFS_H_ */