// See https://wiki.archlinux.org/index.php/PKGBUILD
// And
// https://jlk.fjfi.cvut.cz/arch/manpages/man/BUILDINFO.5
// And
// https://wiki.archlinux.org/index.php/Arch_package_guidelines
// for details on the pkgbuild format.
pubfnparse(content:&str)->crate::manifests::manifest::AbstractManifest{letmut response =crate::manifests::manifest::AbstractManifest::default();return response;}pubfnfile_path_matches(path:&str)->bool{if path.to_uppercase().ends_with("PKGBUILD"){returntrue;}// TODO not sure about this, but I think the source infos
// are easier to parse than the pkg build, which is a script.
// See https://wiki.archlinux.org/index.php/.SRCINFO
if path.to_uppercase().ends_with(".SRCINFO"){returntrue;}returnfalse;}pubfnfile_content_matches(content:&str)->bool{returnfalse;}