(path: PathBuf)
| 28 | |
| 29 | #[staticmethod] |
| 30 | fn from_pkgbuild(path: PathBuf) -> Result<Self, crate::srcinfo::error::Error> { |
| 31 | let inner = alpm_srcinfo::SourceInfoV1::from_pkgbuild(&path)?; |
| 32 | Ok(inner.into()) |
| 33 | } |
| 34 | |
| 35 | #[getter] |
| 36 | fn base(&self) -> package_base::PackageBase { |
no outgoing calls