blob: fc6e8d67a9bf95fbf59f87ea3d624fa5ef92e160 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Maintainer: torvic9 <torvic9 AT mailbox DOT org>
# gmpbench v0.2 from gmplib.org
pkgname=gmpbench
pkgver=0.2
pkgrel=2
pkgdesc="gmpbench v0.2 from gmplib.org"
url="https://gmplib.org/gmpbench"
arch=('i686' 'x86_64')
license=('GPL')
depends=('gmp')
makedepends=('make' 'gcc' 'git' 'gmp')
source=("git+https://gitlab.com/torvic9/gmpbench.git")
md5sums=('SKIP')
build() {
cd $pkgname
make V=1
}
package() {
cd $pkgname
make DESTDIR="$pkgdir/usr" install
}
|