2013-06-15 05:00:19 +08:00
|
|
|
#Contributions from Arch: https://www.archlinux.org/packages/community/x86_64/libtommath/
|
|
|
|
|
|
|
|
pkgname=libtommath
|
|
|
|
pkgver=0.42.0
|
2015-12-12 20:57:46 +08:00
|
|
|
pkgrel=2
|
2013-06-15 05:00:19 +08:00
|
|
|
pkgdesc="Highly optimized and portable routines for integer based number theoretic applications"
|
|
|
|
url="http://www.libtom.org/"
|
|
|
|
license=('custom')
|
|
|
|
arch=('x86_64')
|
2015-12-12 20:57:46 +08:00
|
|
|
source=("https://github.com/libtom/libtommath/archive/v${pkgver}.tar.gz"
|
2013-06-15 05:00:19 +08:00
|
|
|
'libtommath-0.42.0-makefile.patch')
|
2015-12-12 20:57:46 +08:00
|
|
|
md5sums=('6e2a82a6073388e4d14d30e8eb0d4fe3'
|
2013-06-15 05:00:19 +08:00
|
|
|
'd50c26fdc5aa87e6acfd4adc20557ff4')
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
|
|
|
|
patch -Np1 -i ${srcdir}/libtommath-0.42.0-makefile.patch
|
|
|
|
|
|
|
|
make -f makefile.shared IGNORE_SPEED=1
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
|
|
|
|
make DESTDIR=$pkgdir INSTALL_GROUP=root install
|
|
|
|
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
|
|
|
chmod 644 ${pkgdir}/usr/lib/libtommath.a
|
|
|
|
}
|