Runner in the High

技術のことをかくこころみ

Ubuntu環境でのfdk-aacビルド方法

github.com

リポジトリにはREADMEどころか何も書かれていないのでメモしておく

# ビルドに必要なパッケージをインストール
$ sudo apt install autoconf libtool

# リポジトリをクローン
$ git clone git@github.com:mstorsjo/fdk-aac.git

# ビルド
$ cd fdk-aac
$ bash autogen.sh
$ ./configure --prefix=`pwd`/objs
$ make 
$ make install