You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
637 B
44 lines
637 B
/* |
|
* Copyright (C) 2021-2022 Riyyi |
|
* |
|
* SPDX-License-Identifier: MIT |
|
*/ |
|
|
|
#ifndef PACKAGE_H |
|
#define PACKAGE_H |
|
|
|
#include <string> |
|
#include <vector> |
|
|
|
class Package { |
|
public: |
|
Package(); |
|
virtual ~Package(); |
|
|
|
enum class Distro { |
|
Unsupported, |
|
Arch, |
|
Debian, |
|
}; |
|
|
|
enum class InstallType { |
|
Install, |
|
AurInstall, |
|
}; |
|
|
|
void aurInstall(); |
|
void install(); |
|
void list(const std::vector<std::string>& targets = {}); |
|
void store(); |
|
|
|
private: |
|
void installOrAurInstall(InstallType type); |
|
|
|
bool distroDetect(); |
|
bool distroDependencies(); |
|
std::string getPackageList(); |
|
|
|
Distro m_distro { Distro::Unsupported }; |
|
}; |
|
|
|
#endif // PACKAGE_H
|
|
|