summaryrefslogtreecommitdiff
path: root/psibuilds/gmp.psibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2021-10-02 23:21:53 +0100
committerdavidovski <david@davidovski.xyz>2021-10-02 23:21:53 +0100
commit16e799786f34721e646e14a2b7e7ab3816137f1a (patch)
tree82c05b6b1d5fc9d33cd864b27bfb1e3af3f01536 /psibuilds/gmp.psibuild
parentc4e0c314e6eac6964328c9c3daeaa232ea06e965 (diff)
added packages
Diffstat (limited to 'psibuilds/gmp.psibuild')
-rw-r--r--psibuilds/gmp.psibuild25
1 files changed, 25 insertions, 0 deletions
diff --git a/psibuilds/gmp.psibuild b/psibuilds/gmp.psibuild
new file mode 100644
index 0000000..4a62d77
--- /dev/null
+++ b/psibuilds/gmp.psibuild
@@ -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
+}
+
+