Saltar para o conteúdo

Ardour

Ardour

#!/bin/bash
set -e
INSTNAME='ardour'
source <(curl -sSL https://estudio-debian.pages.dev/functions.lib)
if [[ "$(grep '^ID=' /etc/os-release | cut -d '=' -f2)" == debian ]]; then
	aptreinst ubuntu-archive-keyring
fi
sudo tee /etc/apt/sources.list.d/resolute.sources >/dev/null <<EOF
Types: deb
URIs: http://archive.ubuntu.com/ubuntu/
Suites: resolute
Components: main universe
Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
EOF
sudo tee /etc/apt/preferences.d/resolute >/dev/null <<EOF
Package: *
Pin: release o=Ubuntu,n=resolute
Pin-Priority: -1

Package: ardour
Pin: release o=Ubuntu,n=resolute
Pin-Priority: 1000

Package: ardour-data
Pin: release o=Ubuntu,n=resolute
Pin-Priority: 1000

Package: ardour-lv2-plugins
Pin: release o=Ubuntu,n=resolute
Pin-Priority: 1000

Package: ardour-video-timeline
Pin: release o=Ubuntu,n=resolute
Pin-Priority: 1000
EOF
aptup
install_deb