diff options
Diffstat (limited to 'Functions/DEB')
| -rw-r--r-- | Functions/DEB | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/Functions/DEB b/Functions/DEB index 1c0e498..5d59135 100644 --- a/Functions/DEB +++ b/Functions/DEB @@ -17,7 +17,7 @@ function thirdparty_arch() {      fi  } -function thirdparty_distribution() { +function thirdparty_distribution_name() {      local debfile="$1"      local distro=$(dpkg-deb --field "$debfile" "Distribution")      if [ -z "$distro" ] @@ -26,6 +26,10 @@ function thirdparty_distribution() {      fi  } +function thirdparty_distribution_code() { +    return +} +  function thirdparty_dependencies() {      local debfile="$1"      local deps=$(dpkg-deb --field "$debfile" "Depends") | 
