diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-06-21 22:04:37 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-06-21 22:04:37 (EDT) |
commit | 888356f8a16d95cd98e99094a3dbf9d442b3ee03 (patch) | |
tree | 5de94bb2e7b60c45724f892c5b96feeba6a8d636 /lib/metadata | |
parent | 40502c667e1207023e81de17ae378de908ac0632 (diff) |
ob_qualify_package_name(): New function
Diffstat (limited to 'lib/metadata')
-rw-r--r-- | lib/metadata/proteanos.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/metadata/proteanos.sh b/lib/metadata/proteanos.sh index 2713423..66f2ea8 100644 --- a/lib/metadata/proteanos.sh +++ b/lib/metadata/proteanos.sh @@ -164,3 +164,18 @@ _ob_get_system_path() return 0 } + +_ob_section_is_coinstallable() +{ + local sect="${1}" + shift 1 || _ob_abort + + case "${sect}" in + 'lib') + return 0 + ;; + *) + return 1 + ;; + esac +} |