diff options
Diffstat (limited to 'src/package')
-rw-r--r-- | src/package/2.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/package/2.sh b/src/package/2.sh index 2a856d3..18e5a85 100644 --- a/src/package/2.sh +++ b/src/package/2.sh @@ -20,6 +20,15 @@ _package_2_build_deps= +_package_2_get_name_and_version() +{ + # The first line is all we need to parse. + sed '1{ s/^\([^ ][^ ]*\) (\([^)][^)]*\)).*$/\1 \2/; q; };' \ + "${package_dir}/changelog" + + return 0 +} + _package_2_build_deps_field_cb() { local name="${1}" |