summaryrefslogtreecommitdiff
path: root/xibuilds/gmp.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2021-10-05 16:35:17 +0100
committerdavidovski <david@davidovski.xyz>2021-10-05 16:35:17 +0100
commitcdea2f67ae42d4220e19a555259b69a960925283 (patch)
treeb1cc697e6e0203b3ce02e15b8baa4f73f84e34c8 /xibuilds/gmp.xibuild
parent16e799786f34721e646e14a2b7e7ab3816137f1a (diff)
renamed
Diffstat (limited to 'xibuilds/gmp.xibuild')
-rw-r--r--xibuilds/gmp.xibuild25
1 files changed, 25 insertions, 0 deletions
diff --git a/xibuilds/gmp.xibuild b/xibuilds/gmp.xibuild
new file mode 100644
index 0000000..4a62d77
--- /dev/null
+++ b/xibuilds/gmp.xibuild
@@ -0,0 +1,25 @@
+#!/bin/bash
+
+DEPS=(gcc-libs sh)
+
+SOURCE=https://github.com/ryepdx/gmp
+
+
+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
+}
+
+package () {
+ ln -sv $PKG_DEST/usr/bin/flex $PKG_DEST/usr/bin/lex
+}
+
+