]> git.tdb.fi Git - builder.git/blob - source/tarball.h
Refactor transitive dependencies to work on all targets
[builder.git] / source / tarball.h
1 #ifndef TARBALL_H_
2 #define TARBALL_H_
3
4 #include "filetarget.h"
5
6 class TarBall: public FileTarget
7 {
8 public:
9         TarBall(Builder &, const SourcePackage &, const std::string &);
10
11         virtual const char *get_type() const { return "TarBall"; }
12         const SourcePackage *get_package() const;
13 };
14
15 #endif