X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftarball.h;h=18ff19dcfcd9a8b72cad6f448a42cf7122c53b6b;hb=HEAD;hp=c2fa288321720ca743d2c64485514a00780a7176;hpb=242c55b17e6608b29a77ca17a5b677e202a3ca90;p=builder.git diff --git a/source/tarball.h b/source/tarball.h deleted file mode 100644 index c2fa288..0000000 --- a/source/tarball.h +++ /dev/null @@ -1,29 +0,0 @@ -/* $Id$ - -This file is part of builder -Copyright © 2007-2009 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#ifndef TARBALL_H_ -#define TARBALL_H_ - -#include "target.h" - -class TarBall: public Target -{ -private: - std::string tarname; - -public: - TarBall(Builder &, const SourcePackage &, const std::string & =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