Gedit パッケージは GNOME デスクトップでの軽量な UTF-8 テキストエディターを提供します。
LFS や依存パッケージが本ブックに示す最新安定バージョンでなかった場合には、BLFS 開発版においては、パッケージのビルドや処理実行が適切に行われないことがあります。
ダウンロード (HTTP): https://download.gnome.org/sources/gedit/46/gedit-46.1.tar.xz
ダウンロード MD5 sum: 74cc927f8c41e7ccd2352c90d1086974
ダウンロードサイズ: 2.6 MB
必要ディスク容量: 50 MB (with tests)
概算ビルド時間: 0.2 SBU (using parallelism=4; with tests)
gsettings-desktop-schemas-45.0, itstool-2.0.7, libpeas-1.36.0, libgeditsourceview-299.0.4, and tepl-6.8.0
gspell-1.12.2, Gvfs-1.52.1 (runtime), ISO Codes-4.15.0, and PyGObject-3.46.0 (Python 3 module)
First change the meson.build
script
so that it can accept a release
build.
sed -i s/plain/release/ meson.build
以下のコマンドを実行して Gedit をビルドします。
mkdir gedit-build && cd gedit-build && meson setup --prefix=/usr \ --buildtype=release \ -Dgtk_doc=false \ .. && ninja
ビルド結果をテストする場合は ninja test を実行します。
root
ユーザーになって以下を実行します。
ninja install
「DESTDIR」
手法により本パッケージをインストールする場合 /usr/share/glib-2.0/schemas/gschemas.compiled
は生成更新されません。 このファイルを生成更新するためには root
ユーザーになって以下のコマンドを実行します。
glib-compile-schemas /usr/share/glib-2.0/schemas
-Dgtk_doc=false
: This
switch disables generating the API documentation. Omit this switch
if you have GTK-Doc-1.33.2 installed and wish to generate
the API documentation.