pub fn is_manjaro_name_or_owner(name: &str, owner: &str) -> boolExpand description
What: Determine if a package or its owner indicates Manjaro
Input:
namepackage name;ownermaintainer/owner string
Output:
trueif name starts with “manjaro-” or owner contains “manjaro” (case-insensitive)
Details:
- Lowercases both inputs and checks the prefix/substring rules.