]> git.tdb.fi Git - builder.git/blobdiff - source/tarball.cpp
Make tools capable of reporting a system-wide path used to locate input files
[builder.git] / source / tarball.cpp
index 521b6ac738c6ce76eca6a5fddec30ea58659e829..825c0ba79e237ea44c5010c262ac71d4f5ae78ba 100644 (file)
@@ -1,10 +1,3 @@
-/* $Id$
-
-This file is part of builder
-Copyright © 2007-2009  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #include "sourcepackage.h"
 #include "tar.h"
 #include "tarball.h"
@@ -13,16 +6,9 @@ using namespace std;
 
 TarBall::TarBall(Builder &b, const SourcePackage &p, const string &n):
        FileTarget(b, &p, p.get_source()/(n+".tar"))
-{
-       buildable = true;
-}
+{ }
 
 const SourcePackage *TarBall::get_package() const
 {
        return static_cast<const SourcePackage *>(package);
 }
-
-Action *TarBall::create_action()
-{
-       return new Tar(builder, *this);
-}