ソースから deb パッケージ化してインストールしたパッケージをアップグレードする。

基本的にはインストール時の作業と同じ。

# apt-get build-dep git
# apt-get -b source git
# apt-get -i dpkg -i git_4.3.20-10_i386.deb

他のインストール/アップグレードのオプション

dpkg -E パッケージ名| --skip-same-version
Don't install the package if the same version of the package is already installed.
同じバージョンのパッケージが既にインストールされている場合、指定されたパッケージはインストールしない。
dpkg -G パッケージ名
Don't install a package if a newer version of the same package is already installed. This is an alias of --refuse-downgrade.
指定したパッケージが既にインストールされているパッケージよりも古い場合はインストールをしない。このオプションは --refuse-downgrade と同じオプションになる。