community/gf2x to 1.3.0-2

This commit is contained in:
David Beauchamp 2021-11-15 16:25:08 -05:00
parent 3d7ff06518
commit 066447afc4
1 changed files with 7 additions and 7 deletions

View File

@ -5,27 +5,27 @@
pkgname=gf2x
pkgver=1.3.0
pkgrel=1
pkgdesc="A library for multiplying polynomials over the binary field"
pkgrel=2
pkgdesc='A library for multiplying polynomials over the binary field'
arch=(x86_64)
url="https://gforge.inria.fr/projects/gf2x/"
url='https://gforge.inria.fr/projects/gf2x/'
license=(GPL LGPL)
depends=(glibc)
source=("https://gforge.inria.fr/frs/download.php/38243/gf2x-$pkgver.tar.gz")
source=(https://gitlab.inria.fr/gf2x/gf2x/uploads/c46b1047ba841c20d1225ae73ad6e4cd/gf2x-$pkgver.tar.gz)
sha256sums=('9472cd651972a1de38e3c4c47697a86e0ecf19d7d33454d4bc2a62bc85841b59')
build() {
cd $pkgname-$pkgver
cd gf2x-$pkgver
./configure --prefix=/usr --disable-pclmul
make
}
check() {
cd $pkgname-$pkgver
cd gf2x-$pkgver
make -k check
}
package() {
cd $pkgname-$pkgver
cd gf2x-$pkgver
make prefix="$pkgdir"/usr install
}