mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
extra/primecount to 7.10-1
This commit is contained in:
parent
8e92fb6817
commit
d54528e47a
2 changed files with 20 additions and 3 deletions
15
extra/primecount/.SRCINFO
Normal file
15
extra/primecount/.SRCINFO
Normal file
|
@ -0,0 +1,15 @@
|
|||
pkgbase = primecount
|
||||
pkgdesc = Fast C++ prime counting function implementation
|
||||
pkgver = 7.10
|
||||
pkgrel = 1
|
||||
url = https://github.com/kimwalisch/primecount
|
||||
arch = x86_64
|
||||
license = BSD
|
||||
makedepends = cmake
|
||||
depends = gcc-libs
|
||||
depends = glibc
|
||||
depends = primesieve
|
||||
source = https://github.com/kimwalisch/primecount/archive/v7.10/primecount-7.10.tar.gz
|
||||
sha256sums = 0a0e9aaa25d8c24d06f0612fc01cd0c31f3eac4e096a9248fc041dd42dc60afb
|
||||
|
||||
pkgname = primecount
|
|
@ -4,16 +4,18 @@
|
|||
# - set -DWITH_FLOAT128=OFF
|
||||
|
||||
pkgname=primecount
|
||||
pkgver=7.9
|
||||
pkgver=7.10
|
||||
pkgrel=1
|
||||
pkgdesc='Fast C++ prime counting function implementation'
|
||||
arch=(x86_64)
|
||||
url='https://github.com/kimwalisch/primecount'
|
||||
license=(BSD)
|
||||
depends=(primesieve)
|
||||
depends=(gcc-libs
|
||||
glibc
|
||||
primesieve)
|
||||
makedepends=(cmake)
|
||||
source=(https://github.com/kimwalisch/primecount/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
|
||||
sha256sums=('872975ba2cbb43f5cc1ff5f5fda9ec4ec3f2be1eb3e3e906abe5d0b29a997f5b')
|
||||
sha256sums=('0a0e9aaa25d8c24d06f0612fc01cd0c31f3eac4e096a9248fc041dd42dc60afb')
|
||||
|
||||
build() {
|
||||
cmake -B build -S $pkgname-$pkgver \
|
||||
|
|
Loading…
Reference in a new issue