]> git.tdb.fi Git - builder.git/blob - plugins/base/tarball.h
Convert builtin tools into a plugin
[builder.git] / plugins / base / tarball.h
1 #ifndef TARBALL_H_
2 #define TARBALL_H_
3
4 #include <msp/builder/filetarget.h>
5
6 class TarBall: public FileTarget
7 {
8 public:
9         TarBall(Builder &, const SourcePackage &, const std::string &);
10
11         const char *get_type() const override { return "TarBall"; }
12         const SourcePackage *get_package() const;
13 };
14
15 #endif