Skip to content

iconv module for supporting ARIB STD-B24 encoding which is used in Japanese DTV

Notifications You must be signed in to change notification settings

aimoff/gconv-module-aribb24

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

デジタルTV用文字コード(ARIB STD-B24)のiconv変換モジュール

Opippi さんの gconv-module-aribb24 のビルド・インストール方法だけを改変したものです
それ以外のソースコードは全く同じです

GCONV_PATH 環境変数を使うのではなく iconvconfig コマンドによりモジュール設定させます
GCONV_PATH 環境変数が設定されたままの状態では本モジュールをインストールがうまくいかないため、事前に GCONV_PATH 環境変数を unset してください (man iconvconfig (8) 参照)

ビルド

OS の iconv 変換モジュールが /usr/lib/gconv 以外にある場合 configure 実行時に GCONVSYSDIR 環境変数にパスを指定します

以下は Debian bullseye の場合の例

$ ./autogen.sh
$ mkdir build
$ cd build
$ GCONVSYSDIR=/usr/lib/x86_64-linux-gnu/gconv ../configure [--prefix=....]
$ make

インストール

$ sudo make install

インストール後の確認

$ make installcheck

以下のような出力があれば OK

iconv -l | grep ARIB
ARIB-B24//
ARIB-STD-B24//

アンインストール

$ sudo make uninstall

アンインストール後の確認

$ make installcheck

以下のような出力があればアンインストールされています

iconv -l | grep ARIB
make[1]: *** [Makefile:696: installcheck-local] エラー 1

About

iconv module for supporting ARIB STD-B24 encoding which is used in Japanese DTV

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 98.3%
  • Other 1.7%