Support .deb

This commit is contained in:
ema
2025-06-04 16:35:51 +08:00
parent 3bd1239457
commit efe28423e9
13 changed files with 307 additions and 39 deletions

View File

@@ -17,6 +17,20 @@
namespace QuickLook.Plugin.AppViewer.PackageParsers.Deb;
/// <summary>
/// https://www.debian.org/doc/debian-policy/ch-controlfields.html
/// </summary>
public class DebInfo
{
public string Package { get; set; }
public string Maintainer { get; set; }
public string Uploaders { get; set; }
public string Version { get; set; }
public string Architecture { get; set; }
public string Description { get; set; }
}