История изменений
Исправление Vsevolod-linuxoid, (текущая версия) :
Да, есть. Но не проще ли подключить репы и поставить оттуда?
#!/bin/bash
touch /etc/apt/sources.list.d/stretch.list
echo 'deb http://ftp.ru.debian.org/debian/ stretch main' >> /etc/apt/sources.list.d/stretch.list
echo 'deb http://ftp.ru.debian.org/debian/ stretch-updates main' >> /etc/apt/sources.list.d/stretch.list
echo 'deb http://security.debian.org/ stretch/updates main' >> /etc/apt/sources.list.d/stretch.list
touch /etc/apt/preferences.d/stretch
echo 'Package: *' >> /etc/apt/preferences.d/stretch
echo 'Pin: release n=stretch' >> /etc/apt/preferences.d/stretch
echo 'Pin-Priority: 100' >> /etc/apt/preferences.d/stretch
apt update
apt install -t stretch qmmp
exit
Хотя dep-hell возможен, да. Но там уже от твоего состава пакетов зависит.
Исходная версия Vsevolod-linuxoid, :
Да, есть. Но не проще ли подключить репы и поставить оттуда?
#!/bin/bash
touch /etc/apt/sources.list.d/stretch.list
echo 'deb http://ftp.ru.debian.org/debian/ stretch main' >> /etc/apt/sources.list.d/stretch.list
echo 'deb http://ftp.ru.debian.org/debian/ stretch-updates main' >> /etc/apt/sources.list.d/stretch.list
echo 'deb http://security.debian.org/ stretch/updates main' >> /etc/apt/sources.list.d/stretch.list
touch /etc/apt/preferences.d/stretch
echo 'Package: *' >> /etc/apt/preferences.d/stretch
echo 'Pin: release n=stretch' >> /etc/apt/preferences.d/stretch
echo 'Pin-Priority: 100' >> /etc/apt/preferences.d/stretch
apt update
apt install -t stretch qmmp
exit