在Ubuntu下安装一个包的过程中,当debian/rules
生成时,make
可以使用哪些环境变量?
我特别关注与Gnome的配置目录相关的环境变量。我想避免像apt-get
这样的“硬编码”,因为我被告知这些可能会改变,就像它们倾向于。。。
我一直在疯狂地搜索!
最佳答案
你在找XDG配置主页和related?特别地,注意XDGJCONTIGHOLD HOLD不必存在,在这种情况下假定了~/.CONFIG的值。
Python示例
import os
from os import path
app_name = "my_app"
home_config = path.join(
os.environ.get("XDG_CONFIG_HOME") or path.expanduser("~/.config"),
app_name,
)
print "User-specific config:", home_config
C++实例
#include <cstdlib>
#include <iostream>
#include <stdexcept>
#include <string>
std::string get_home_config(std::string const& app_name) {
// also look at boost's filesystem library
using namespace std;
string home_config;
char const* xdg_config_home = getenv("XDG_CONFIG_HOME");
if (xdg_config_home && xdg_config_home[0] != '\0') {
home_config = xdg_config_home;
}
else {
if (char const* home = getenv("HOME")) {
home_config = home;
home_config += "/.config";
}
else throw std::runtime_error("HOME not set");
}
home_config += "/";
home_config += app_name;
return home_config;
}
int main() try {
std::cout << "User-specific config: " << get_home_config("my_app") << '\n';
return 0;
}
catch (std::exception& e) {
std::clog << e.what() << std::endl;
return 1;
}
关于linux - 生成“debian规则”文件时apt-get环境变量,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2208400/