NTL は Number Theory Library の略.詳しくは,以下の公式(?)ページで.

http://www.shoup.net/ntl/

AURにパッケージがあったが,libntl.a しかインストールされなかったので,自前で.

PKGBUILDつくって.makepkg -s.でおしまい.

pkgname=ntl
pkgver=5.5.2
pkgrel=1
pkgdesc="A high-performance, portable C++ library providing data structures and algorithms for arbitrary length integers"
arch=('i686' 'x86_64')
url="http://www.shoup.net/ntl/"
license=('GPL')
depends=('gmp')
source=(http://www.shoup.net/ntl/$pkgname-$pkgver.tar.gz)
md5sums=('2e0afa1fa3b325e562ce89da57cba983')
build() {
cd $srcdir/$pkgname-$pkgver/src
./configure PREFIX=$pkgdir/usr NTL_GMP_LIP=on
make
make install
}