是什么 ? | : | an internationalization tool used for extracting translatable strings from source files into the GNU gettext PO files. |
开发语言 | : | Perl |
官方主页 | : |
操作系统 | 包管理器 | 安装命令 |
---|---|---|
macOS | HomeBrew | brew install intltool |
GNU/Linux | HomeBrew | brew install intltool |
apt | sudo apt-get install -y intltoolc | |
CentOS | yum | sudo yum install -y intltool |
dnf | sudo dnf install -y intltool | |
openSUSE | zypper | sudo zypper install -y intltool |
Alpine Linux | apk | sudo apk add intltool |
pacman | sudo pacman -Syyu --noconfirm | |
Gentoo Linux | Portage | sudo emerge intltool |
step1、安装依赖
所有时 | Terminal + Shell + GNU CoreUtils |
下载时 | cURL |
解压时 | tar + gzip |
编译时 | PerlToolSet、XML::Parser、gmake |
运行时 | PerlToolSet、XML::Parser |
step2、使用curl命令下载intltool
源码包 ()
curl -LO https://mirrors.tuna.tsinghua.edu.cn/debian/pool/main/i/intltool/intltool_0.51.0.orig.tar.gz
step3、使用tar解压intltool
源码包
tar vxf intltool_0.51.0.orig.tar.gz
step4、进入intltool-0.51.0
目录
cd intltool-0.51.0
step5、查看intltool-0.51.0
目录的内容
step6、创建构建目录,并进入该目录
mkdir build && cd build
step7、使用../configure
配置编译参数
../configure
是一个可执行的POSIX sh脚本,用它 配置后会产生gmake的配置文件Makefile。
../configure
的使用格式如下:
../configure [option]... [VAR=VALUE]...
option | 说明 | |
---|---|---|
--help | -h | 查看../configure 的使用帮助 | |
--version | -V | 查看../configure 是哪个版本的autoconf生成的 | |
--quiet | -q | --silent | 不输出checking... 这些信息 | |
--prefix=DIR | 指定安装目录。默认是/usr/local/ | |
--host=HOST | 设置目标程序运行的CPU平台 一般不需要设置,除非你想要 交叉编译 默认与宿主机一样 | |
--enable-FEATURE[=yes|no] | yes: 打开FEATURE no: 关闭FEATURE | |
--enable-dependency-tracking[=yes|no] | 是否开启依赖追踪 | |
--enable-option-checking[=yes|no] | 是否检查有无不认识的--enable-FEATURE 、--with-PACKAGE 参数 | |
--enable-silent-rules[=yes|no] | yes: 相当于make V=0 no: 相当于make V=1 |
与enable-FEATURE
对应的选项,还有disable-FEATURE
,disable-FEATURE
相当于enable-FEATURE=no
示例:
../configure --prefix=/usr
step8、使用make进行编译、安装
make && sudo make install