libtommath: initial commit, version 1.1.0

This commit is contained in:
Tim Biermann 2019-08-11 11:14:09 +02:00
parent 2088b89650
commit bca76aec4f
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 33 additions and 0 deletions

13
libtommath/.footprint Normal file
View File

@ -0,0 +1,13 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/tommath.h
-rw-r--r-- root/root usr/include/tommath_class.h
-rw-r--r-- root/root usr/include/tommath_superclass.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libtommath.a
-rw-r--r-- root/root usr/lib/libtommath.la
lrwxrwxrwx root/root usr/lib/libtommath.so -> libtommath.so.1.1.0
lrwxrwxrwx root/root usr/lib/libtommath.so.1 -> libtommath.so.1.1.0
-rw-r--r-- root/root usr/lib/libtommath.so.1.1.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libtommath.pc

5
libtommath/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF32F4CJEn9m3ZyKnmZtUUuct+xXnUJdsOE3302j9EmkSYbmmSOAxjjlAMQgGgYYn4C5zSC62h8EIgBlU8Rh21gAc=
SHA256 (Pkgfile) = e78b420c9f00e81b68121c3bb251f1ad8b9656f894c0dfe515f8524eafaf27d7
SHA256 (.footprint) = f82c687fd3163f55f821c97bcb9c76653debbf89e29d3cab078135c49158543b
SHA256 (ltm-1.1.0.tar.xz) = 90466c88783d1fe9f5c2364a69f5479f10d73ed616011be6196f35f7f1537ead

15
libtommath/Pkgfile Normal file
View File

@ -0,0 +1,15 @@
# Description: Highly optimized and portable routines for integer based number theoretic applications
# URL: http://www.libtom.org/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on:
name=libtommath
version=1.1.0
release=1
source=(https://github.com/libtom/libtommath/releases/download/v$version/ltm-$version.tar.xz)
build() {
cd $name-$version
make -f makefile.shared IGONE_SPEED=1
make -f makefile.shared PREFIX=/usr DESTDIR=$PKG INSTALL_GROUP=root install
}