allow installing lib and include under different prefixes

This commit is contained in:
Robert Schütz
2021-07-24 23:59:49 +02:00
committed by link2xt
parent 3647aac4e6
commit ef9fbf9eba
3 changed files with 10 additions and 4 deletions

View File

@@ -22,7 +22,9 @@ fn main() {
url = env::var("CARGO_PKG_HOMEPAGE").unwrap_or_else(|_| "".to_string()),
version = env::var("CARGO_PKG_VERSION").unwrap(),
libs_priv = libs_priv,
prefix = env::var("PREFIX").unwrap_or_else(|_| "/usr/local".to_string()),
prefix = env::var("PREFIX").unwrap(),
libdir = env::var("LIBDIR").unwrap(),
includedir = env::var("INCLUDEDIR").unwrap(),
);
fs::create_dir_all(target_path.join("pkgconfig")).unwrap();