diff options
| author | zorz <zorz@krypt.sh> | 2026-05-05 18:29:35 +0300 |
|---|---|---|
| committer | zorz <zorz@krypt.sh> | 2026-05-05 18:29:35 +0300 |
| commit | 3ee93968e10126adc7dad5c8872f0170c3421e13 (patch) | |
| tree | bcac8daa62b6c9a94a48dae87f5d3f6de1985bba /mpfr | |
| parent | 936433a5deb6ccc8f8476096f2c2b8dc72c33388 (diff) | |
| download | zorz-3ee93968e10126adc7dad5c8872f0170c3421e13.tar.gz zorz-3ee93968e10126adc7dad5c8872f0170c3421e13.tar.xz | |
various obsolette
Diffstat (limited to 'mpfr')
| -rw-r--r-- | mpfr/.signature | 5 | ||||
| -rw-r--r-- | mpfr/MAKEPKG | 33 |
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 @@ | |||
| 1 | untrusted comment: verify with opentux.pub | ||
| 2 | RWTZ9IduCSQ/mJNFv+ej34vzSOB/9/phz7hBFz+8bHoCHLkgCwDnGcKIeeCoUsVjJYqfw2fb0nIEIQKS+oryZhaQ78ORgYKSNws= | ||
| 3 | |||
| 4 | SHA256 (MAKEPKG) = 67efbaada3960f95f09f2df13e1d6019ce13bf1264bdecb018771c05544e7898 | ||
| 5 | SHA256 (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 | |||
| 5 | name=mpfr | ||
| 6 | version=4.2.2 | ||
| 7 | release=1 | ||
| 8 | depends=(gmp) | ||
| 9 | source=( | ||
| 10 | https://www.mpfr.org/mpfr-$version/mpfr-$version.tar.xz | ||
| 11 | ) | ||
| 12 | |||
| 13 | sha256sums=( | ||
| 14 | "b67ba0383ef7e8a8563734e2e889ef5ec3c3b898a01d00fa0a6869ad81c6ce01" | ||
| 15 | ) | ||
| 16 | |||
| 17 | build() { | ||
| 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 | |||
| 28 | signify() { | ||
| 29 | untrusted comment: *** OpenTUX *** public key | ||
| 30 | RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 | ||
| 31 | } | ||
| 32 | |||
| 33 | # vim: filetype=sh | ||