]> git.tdb.fi Git - builder.git/blobdiff - source/tarball.h
Add a tarball component type
[builder.git] / source / tarball.h
index 6b89ffc0269d02b082f02d6bc17fec52bc4dccab..32b18b0e4dd3dc8b4907fbbc43bd5d1adba26458 100644 (file)
@@ -13,14 +13,11 @@ Distributed under the LGPL
 class TarBall: public FileTarget
 {
 public:
-       TarBall(Builder &, const SourcePackage &, const std::string & =std::string());
+       TarBall(Builder &, const SourcePackage &, const std::string &);
        virtual const char *get_type() const { return "TarBall"; }
        const SourcePackage *get_package() const;
-       virtual void find_depends();
 private:
        virtual Action *create_action();
-
-       static std::string create_target_name(const SourcePackage &, const std::string &);
 };
 
 #endif