aur_depends/
pkgbuild.rs

1
2
3
4
5
6
7
8
9
10
use srcinfo::Srcinfo;

#[derive(Debug, Clone)]
/// A pkgbuild repo.
pub struct PkgbuildRepo<'a> {
    /// Name of the repo.
    pub name: &'a str,
    /// Packages in the repo.
    pub pkgs: Vec<&'a Srcinfo>,
}