Date: Tuesday, May 17, 2022 @ 20:14:22 Author: arojas Revision: 1207719
Update to 7.0.5 Modified: gmp-ecm/trunk/PKGBUILD ----------+ PKGBUILD | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2022-05-17 20:05:19 UTC (rev 1207718) +++ PKGBUILD 2022-05-17 20:14:22 UTC (rev 1207719) @@ -3,33 +3,33 @@ # Contributor: Gaetan Bisson <bis...@archlinux.org> pkgname=gmp-ecm -pkgver=7.0.4 -pkgrel=4 +pkgver=7.0.5 +pkgrel=1 pkgdesc='Elliptic Curve Method for Integer Factorization' url='https://github.com/sethtroisi/gmp-ecm' license=(GPL LGPL) depends=(gmp) arch=(x86_64) -source=(https://github.com/sethtroisi/gmp-ecm/archive/$pkgver/$pkgname-$pkgver.tar.gz) -sha256sums=('61734fae4fdd7bf08c08a8826720dbe0f0c1ad9151909264fc9ce628746629bd') +source=(https://gitlab.inria.fr/zimmerma/ecm/-/archive/git-$pkgver/ecm-git-$pkgver.tar.gz) +sha256sums=('778007e9ddd914487fa6a935ba06baabfe0b38078f04ed7e102e9b52e8fa0137') prepare() { - cd $pkgname-$pkgver + cd ecm-git-$pkgver autoreconf -vi } build() { - cd $pkgname-$pkgver + cd ecm-git-$pkgver ./configure --prefix=/usr --enable-shared --enable-openmp make } check() { - cd $pkgname-$pkgver + cd ecm-git-$pkgver make check } package() { - cd $pkgname-$pkgver + cd ecm-git-$pkgver make DESTDIR="$pkgdir" install }