X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fsourcepackage.h;h=bcdd74cbbfb30aae55b60e0ec9971720efc529b5;hb=4c11e2a041d2064f44b7eb3dbf1976c35fc8881c;hp=f47f25931489928c0f98524a62b85f37cd867f72;hpb=4d0d003b022943d8a0e39ba19078bab8d32d8857;p=builder.git diff --git a/source/sourcepackage.h b/source/sourcepackage.h index f47f259..bcdd74c 100644 --- a/source/sourcepackage.h +++ b/source/sourcepackage.h @@ -51,21 +51,18 @@ public: }; SourcePackage(Builder &, const std::string &, const Msp::Path &); - void set_path(const Msp::Path &); const std::string &get_name() const { return name; } const std::string &get_version() const { return version; } const std::string &get_description() const { return description; } const Msp::Path &get_source() const { return source; } Msp::Path get_temp_dir() const; Msp::Path get_out_dir() const; - Msp::Path get_prefix() const { return config.get_option("prefix").value; } const ComponentList &get_components() const { return components; } const Config &get_config() const { return config; } const BuildInfo &get_build_info() const { return build_info; } const BuildInfo &get_exported_binfo() const { return export_binfo; } Builder &get_builder() const { return builder; } unsigned get_install_flags(); - const std::string &get_arch() const { return config.get_option("arch").value; } LibMode get_library_mode() const; const PathList &get_tar_files() const { return tar_files; } DependencyCache &get_deps_cache() const { return deps_cache; }