Ubuntu安裝FSearch

Die Winter發表於2020-12-21

https://github.com/cboxdoerfer/fsearch/wiki/Build-instructions

官方文件

1. Install build dependencies

 

Ubuntu & Debian & Linux Mint

sudo apt install git build-essential automake autopoint autoconf libtool pkg-config intltool autoconf-archive libpcre3-dev libglib2.0-dev libgtk-3-dev libxml2-utils

 

2. Get the source

git clone https://github.com/cboxdoerfer/fsearch.git
cd fsearch

 

  • 錯誤
 
  1. autoreconf: running: autopoint --force

  2. Can't exec "autopoint": 沒有那個檔案或目錄 at /usr/share/autoconf/Autom4te/FileUtils.pm line 345.

  3. autoreconf: failed to run autopoint: No such file or directory

  4. autoreconf: autopoint is needed because this package uses Gettext

  5.  
  • 解決辦法
sudo apt install autopoint

 

3. Build (and install)

./autogen.sh
./configure
make && sudo make install

相關文章