summaryrefslogtreecommitdiffstats
path: root/mpfr/MAKEPKG
diff options
context:
space:
mode:
Diffstat (limited to 'mpfr/MAKEPKG')
-rw-r--r--mpfr/MAKEPKG33
1 files changed, 33 insertions, 0 deletions
diff --git a/mpfr/MAKEPKG b/mpfr/MAKEPKG
new file mode 100644
index 0000000..e75b534
--- /dev/null
+++ b/mpfr/MAKEPKG
@@ -0,0 +1,33 @@
1#!/bin/mkpkg
2# description: C library for multiple-precision floating-point computations with correct rounding
3# url: https://www.mpfr.org/
4
5name=mpfr
6version=4.2.2
7release=1
8depends=(gmp)
9source=(
10 https://www.mpfr.org/mpfr-$version/mpfr-$version.tar.xz
11)
12
13sha256sums=(
14 "b67ba0383ef7e8a8563734e2e889ef5ec3c3b898a01d00fa0a6869ad81c6ce01"
15)
16
17build() {
18 cd mpfr-$version
19
20 ./configure --prefix=/usr
21 make
22 make DESTDIR=$PKG install
23
24 rm -r $PKG/usr/share
25 rm -f $PKG/usr/lib/*.la
26}
27
28signify() {
29 untrusted comment: *** OpenTUX *** public key
30 RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
31}
32
33# vim: filetype=sh