diff options
author | davidovski <david@davidovski.xyz> | 2021-10-02 23:21:53 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2021-10-02 23:21:53 +0100 |
commit | 16e799786f34721e646e14a2b7e7ab3816137f1a (patch) | |
tree | 82c05b6b1d5fc9d33cd864b27bfb1e3af3f01536 /psibuilds/gmp.psibuild | |
parent | c4e0c314e6eac6964328c9c3daeaa232ea06e965 (diff) |
added packages
Diffstat (limited to 'psibuilds/gmp.psibuild')
-rw-r--r-- | psibuilds/gmp.psibuild | 25 |
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 +} + + |