summaryrefslogtreecommitdiff
path: root/repo/core/gmp.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2021-10-06 17:19:20 +0100
committerdavidovski <david@davidovski.xyz>2021-10-06 17:19:20 +0100
commit0a31fc2a959ea1230d07cfd837f5a9a945a7f80a (patch)
tree4c9aef911135753e8cdffd849c3d071167886168 /repo/core/gmp.xibuild
Initial commit, added core packages
Diffstat (limited to 'repo/core/gmp.xibuild')
-rw-r--r--repo/core/gmp.xibuild20
1 files changed, 20 insertions, 0 deletions
diff --git a/repo/core/gmp.xibuild b/repo/core/gmp.xibuild
new file mode 100644
index 0000000..9161a73
--- /dev/null
+++ b/repo/core/gmp.xibuild
@@ -0,0 +1,20 @@
+#!/bin/bash
+
+DEPS=(gcc-libs sh)
+
+SOURCE=https://gmplib.org/download/gmp/gmp-6.2.1.tar.lz
+DESC="a collection of mathematical libraries"
+
+build () {
+
+ ./configure --prefix=/usr --enable-cxx --disable-static --docdir=/usr/share/doc/gmp
+
+ make
+ make html
+
+ make check 2>&1 | tee gmp-check-log
+ awk '/# PASS:/{total+=$3} ; END{print total}' gmp-check-log
+
+ make DESTDIR=$PKG_DEST install
+ make DESTDIR=$PKG_DEST install-html
+}