diff options
author | davidovski <david@davidovski.xyz> | 2021-10-06 17:18:43 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2021-10-06 17:18:43 +0100 |
commit | c25b6890891c7ef34e129c8c54efdf2993234aa0 (patch) | |
tree | efce372f0cfbcdb2e4285ef65191cbbf1e3146e1 /xibuilds/mpfr.xibuild | |
parent | d4cb1386d79c95e7586e7bccad5b0f6c7861cfe8 (diff) |
moved xibuilds to another repo
Diffstat (limited to 'xibuilds/mpfr.xibuild')
-rw-r--r-- | xibuilds/mpfr.xibuild | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/xibuilds/mpfr.xibuild b/xibuilds/mpfr.xibuild deleted file mode 100644 index 4895dc9..0000000 --- a/xibuilds/mpfr.xibuild +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -DEPS=(glibc gmp) -SOURCE=https://www.mpfr.org/mpfr-current/mpfr-4.1.0.tar.xz - -DESC="Multiple-precision floating-point library" - -build () { - ./configure --prefix=/usr --disable-static --enable-thread-safe --docdir=/usr/share/doc/mpfr-4.1.0 - make - make html - - make check - - make DESTDIR=$PKG_DEST install - make DESTDIR=$PKG_DEST install-html -} - |