alpm-types 0.11.2

Types for Arch Linux Package Management
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Types related to package sources.

/// The name of a [PKGBUILD] file in a package source repository.
///
/// [PKGBUILD]: https://man.archlinux.org/man/PKGBUILD.5
pub const PKGBUILD_FILE_NAME: &str = "PKGBUILD";

/// The name of a [SRCINFO] file in a package source repository.
///
/// [SRCINFO]: https://alpm.archlinux.page/specifications/SRCINFO.5.html
pub const SRCINFO_FILE_NAME: &str = ".SRCINFO";