mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 15:47:15 +08:00
31 lines
898 B
Bash
31 lines
898 B
Bash
#Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
#Contributions from Arch: https://www.archlinux.org/packages/community/x86_64/libtommath/
|
|
|
|
pkgname=libtommath
|
|
pkgver=0.42.0
|
|
pkgrel=1
|
|
pkgdesc="Highly optimized and portable routines for integer based number theoretic applications"
|
|
url="http://www.libtom.org/"
|
|
license=('custom')
|
|
arch=('x86_64')
|
|
source=("http://libtom.org/files/ltm-${pkgver}.tar.bz2"
|
|
'libtommath-0.42.0-makefile.patch')
|
|
md5sums=('7380da904b020301be7045cb3a89039b'
|
|
'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
|
|
}
|