summaryrefslogtreecommitdiffstats
path: root/mpfr
diff options
context:
space:
mode:
authorzorz <zorz@krypt.sh>2026-05-05 18:29:35 +0300
committerzorz <zorz@krypt.sh>2026-05-05 18:29:35 +0300
commit3ee93968e10126adc7dad5c8872f0170c3421e13 (patch)
treebcac8daa62b6c9a94a48dae87f5d3f6de1985bba /mpfr
parent936433a5deb6ccc8f8476096f2c2b8dc72c33388 (diff)
downloadzorz-3ee93968e10126adc7dad5c8872f0170c3421e13.tar.gz
zorz-3ee93968e10126adc7dad5c8872f0170c3421e13.tar.xz
various obsolette
Diffstat (limited to 'mpfr')
-rw-r--r--mpfr/.signature5
-rw-r--r--mpfr/MAKEPKG33
2 files changed, 38 insertions, 0 deletions
diff --git a/mpfr/.signature b/mpfr/.signature
new file mode 100644
index 0000000..65099f6
--- /dev/null
+++ b/mpfr/.signature
@@ -0,0 +1,5 @@
1untrusted comment: verify with opentux.pub
2RWTZ9IduCSQ/mJNFv+ej34vzSOB/9/phz7hBFz+8bHoCHLkgCwDnGcKIeeCoUsVjJYqfw2fb0nIEIQKS+oryZhaQ78ORgYKSNws=
3
4SHA256 (MAKEPKG) = 67efbaada3960f95f09f2df13e1d6019ce13bf1264bdecb018771c05544e7898
5SHA256 (mpfr-4.2.2.tar.xz) = b67ba0383ef7e8a8563734e2e889ef5ec3c3b898a01d00fa0a6869ad81c6ce01
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