Skip to content

Commit

Permalink
Update documents
Browse files Browse the repository at this point in the history
docs/install.html
docs/install.md
  • Loading branch information
ShikiOkasaka committed May 13, 2024
1 parent 873f262 commit 63e0d41
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 13 deletions.
3 changes: 0 additions & 3 deletions autogen.sh

This file was deleted.

17 changes: 12 additions & 5 deletions docs/install.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,19 @@ <h3>ソースコードからインストールする<ruby>方法<rp>(</rp><rt>
<p>&#x3000;「ふりがなパッド」をソースコードからインストールしたいときは、つぎの<ruby>手順<rp>(</rp><rt>てじゅん</rt><rp>)</rp></ruby>でインストールできます。</p>
<pre><code>git clone https://github.com/esrille/furiganapad.git
cd furiganapad/
./autogen.sh --prefix=/usr
make
sudo make install
meson setup --prefix /usr _build
ninja -C _build
sudo ninja -C _build install
</code></pre>
<p>&#x3000;ソースコードからビルドした「ふりがなパッド」をアンインストールするには、つぎのようにします:</p>
<pre><code>sudo make uninstall
<p>&#x3000;ビルドするときに<ruby>必要<rp>(</rp><rt>ひつよう</rt><rp>)</rp></ruby>なパッケージについては、debian/controlのBuild-Depends、あるいは、ibus-hiragana.specのBuildRequiresを<ruby>参考<rp>(</rp><rt>さんこう</rt><rp>)</rp></ruby>にしてください。</p>
<p>&#x3000;Fedoraであれば、つぎのコマンドでビルドに<ruby>必要<rp>(</rp><rt>ひつよう</rt><rp>)</rp></ruby>なパッケージをインストールできます。</p>
<pre><code>sudo yum-builddep ibus-hiragana.spec
</code></pre>
<p>&#x3000;Ubuntuであれば、つぎのコマンドでビルドに<ruby>必要<rp>(</rp><rt>ひつよう</rt><rp>)</rp></ruby>なパッケージをインストールできます。</p>
<pre><code>sudo apt build-dep .
</code></pre>
<p>&#x3000;ソースコードからビルドした「ふりがなパッド」をアンインストールするには、つぎのようにします。</p>
<pre><code>sudo ninja -C _build uninstall
</code></pre>
</main>
<nav>
Expand Down
22 changes: 17 additions & 5 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,25 @@ sudo apt install furiganapad
```
git clone https://github.com/esrille/furiganapad.git
cd furiganapad/
./autogen.sh --prefix=/usr
make
sudo make install
meson setup --prefix /usr _build
ninja -C _build
sudo ninja -C _build install
```

 ソースコードからビルドした「ふりがなパッド」をアンインストールするには、つぎのようにします:
 ビルドするときに必要ひつようなパッケージについては、debian/controlのBuild-Depends、あるいは、ibus-hiragana.specのBuildRequiresを参考さんこうにしてください。
 Fedoraであれば、つぎのコマンドでビルドに必要ひつようなパッケージをインストールできます。

```
sudo make uninstall
sudo yum-builddep ibus-hiragana.spec
```

 Ubuntuであれば、つぎのコマンドでビルドに必要ひつようなパッケージをインストールできます。
```
sudo apt build-dep .
```

 ソースコードからビルドした「ふりがなパッド」をアンインストールするには、つぎのようにします。

```
sudo ninja -C _build uninstall
```

0 comments on commit 63e0d41

Please sign in to comment.