diff --git a/make/project.conf b/make/project.conf index c9b0027f..3b4416d4 100644 --- a/make/project.conf +++ b/make/project.conf @@ -39,6 +39,9 @@ release = rpmbuild, pkg-config, python3-base [pkg.requires.debian] release = devscripts, debhelper, dput, libparse-debcontrol-perl, fakeroot, pkg-config +[pkg.requires.raspbian] +release = devscripts, debhelper, dput, libparse-debcontrol-perl, fakeroot, pkg-config + [pkg.requires.yocto] run = python3-core build = coreutils-native, xdg-utils-native diff --git a/scripts/pkg-manager.sh b/scripts/pkg-manager.sh index 86ed3651..25a823be 100644 --- a/scripts/pkg-manager.sh +++ b/scripts/pkg-manager.sh @@ -53,7 +53,7 @@ cmd_install() } eval run sudo $env -S zypper $global_opts install $opts "$@" ;; - debian|ubuntu) + debian|ubuntu|raspbian) [ "$non_interactive" = 1 ] && { global_opts="$global_opts -yq" env="$env DEBIAN_FRONTEND=noninteractive" @@ -99,7 +99,7 @@ cmd_refresh() } eval run sudo $env -S zypper $global_opts refresh $opts "$@" ;; - debian|ubuntu) + debian|ubuntu|raspbian) eval run sudo $env -S apt-get $global_opts update "$@" ;; centos)