1use srcinfo::Srcinfo; 2 3#[derive(Debug, Clone)] 4/// A pkgbuild repo. 5pub struct PkgbuildRepo<'a> { 6 /// Name of the repo. 7 pub name: &'a str, 8 /// Packages in the repo. 9 pub pkgs: Vec<&'a Srcinfo>, 10}