2

Linux Mint 13で Pidgin プラグインの開発を開始したいと考えています。

公式のチュートリアルを読みましたが、最初に、次のコマンドを使用して pidgin の開発依存関係をインストールする必要があると言われました。 apt-get build-dep pidgin

しかし、次のエラーメッセージが表示されます。

E: pidgin のソース パッケージが見つかりません

特別なリポジトリを追加する必要がありますか? または、どうすれば Linux Mint にこのパッケージを見つけさせることができますか?

sources.list のダンプは次のとおりです。

deb http://packages.linuxmint.com/ maya main upstream import
deb http://archive.ubuntu.com/ubuntu/ precise main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ precise-updates main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu/ precise-security main restricted universe multiverse
deb http://archive.canonical.com/ubuntu/ precise partner
deb http://packages.medibuntu.org/ precise free non-free

# deb http://archive.getdeb.net/ubuntu precise-getdeb apps
# deb http://archive.getdeb.net/ubuntu precise-getdeb games
4

2 に答える 2

9

を編集/etc/apt/sources.listし、次を追加しdeb-srcます。

deb http://packages.linuxmint.com/ maya main upstream import
deb-src http://packages.linuxmint.com/ maya main upstream import

deb http://archive.ubuntu.com/ubuntu/ precise main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ precise main restricted universe multiverse

deb http://archive.ubuntu.com/ubuntu/ precise-updates main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ precise-updates main restricted universe multiverse

deb http://security.ubuntu.com/ubuntu/ precise-security main restricted universe multiverse
deb-src http://security.ubuntu.com/ubuntu/ precise-security main restricted universe multiverse

deb http://archive.canonical.com/ubuntu/ precise partner
deb http://packages.medibuntu.org/ precise free non-free

そして試してください:

apt-get update
apt-get build-dep pidgin
于 2012-08-13T20:50:19.867 に答える
1

をすばやく検索すると、とhttp://packages.linuxmint.com/search.phpの両方にPidginリポジトリが存在することがわかります。これは、それぞれLinuxMint6と8です。Mintがデフォルトでインストールしたリポジトリに、それらの特定のリポジトリへのリンクが含まれていなかった可能性があります。feliciahelena

Pidginの開発に興味がある場合は、ここから直接ファイルをダウンロードすることをお勧めします。これは、Mintの観点からではなく、配布の独立性の観点から開発プロセスを理解するのに役立つ場合があります。

于 2012-08-13T20:29:25.417 に答える