mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 14:14:45 +08:00
26 lines
582 B
Bash
26 lines
582 B
Bash
# $Id$
|
|
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
|
|
pkgname=flintqs
|
|
pkgver=20070817
|
|
pkgrel=1
|
|
pkgdesc="Highly optimized multi-polynomial quadratic sieve for integer factorization"
|
|
arch=('i686' 'x86_64')
|
|
url="https://svn.sourceforge.net/svnroot/fastlibnt/trunk/QS/"
|
|
license=('GPL')
|
|
depends=('gmp')
|
|
source=("http://www.sagemath.org/packages/upstream/$pkgname/$pkgname-$pkgver.tar.bz2")
|
|
md5sums=('ee4a93f336a5fa840b2116a8c9b02911')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
mkdir -p "$pkgdir"/usr/bin
|
|
cp QuadraticSieve "$pkgdir"/usr/bin
|
|
}
|
|
|