blob: 2a5f311e966b8f914852df7f24a03f66804649c3 (
plain)
1 # Description: Highly optimized and portable routines for integer based number theoretic applications
2 # URL: http://www.libtom.org/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on:
5
6 name=libtommath
7 version=1.2.0
8 release=1
9 source=(https://github.com/libtom/libtommath/releases/download/v$version/ltm-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13 make -f makefile.shared IGONE_SPEED=1
14 make -f makefile.shared PREFIX=/usr DESTDIR=$PKG INSTALL_GROUP=root install
15 }
|