📢 Webサイト閉鎖と移転のお知らせ
このWebサイトは2026年9月に閉鎖いたします。
新しい記事は移転先で追加しております。(旧サイトでは記事を追加しておりません)
| 152行目: | 152行目: | ||
../configure --prefix=<Geanyのインストールディレクトリ> --with-geany-libdir=<Geanyのインストールディレクトリ>/lib64 | ../configure --prefix=<Geanyのインストールディレクトリ> --with-geany-libdir=<Geanyのインストールディレクトリ>/lib64 | ||
make -j $(nproc) | |||
make install | |||
<br><br> | |||
== FeatherPad == | |||
[https://github.com/tsujan/FeatherPad/releases FeatherPadのGithub]から、FeatherPadのソースコードをダウンロードする。<br> | |||
ダウンロードしたFeatherPadのソースコードを解凍する。<br> | |||
tar xf FeatherPad-<バージョン>.tar.gz | |||
cd FeatherPad-<バージョン> | |||
<br> | |||
または、<code>git clone</code>コマンドを実行して、FeatherPadのソースコードをダウンロードする。<br> | |||
git clone https://github.com/tsujan/FeatherPad.git | |||
<br> | |||
FeatherPadをビルドするため、依存関係のライブラリをインストールする。<br> | |||
sudo zypper install cmake gcc-c++ libX11-devel libXext-devel hunspell-devel \ | |||
libqt5-qtx11extras-devel libqt5-qtbase-devel libqt5-qttools-devel libqt5-qtsvg-devel | |||
<br> | |||
FeatherPadをビルドおよびインストールする。<br> | |||
mkdir biuld && cd build | |||
cmake -DCMAKE_INSTALL_PREFIX=<FeatherPadのインストールディレクトリ> -DCMAKE_BUILD_TYPE=Release .. | |||
make -j $(nproc) | make -j $(nproc) | ||
make install | make install | ||