diff options
author | davidovski <david@davidovski.xyz> | 2021-10-05 16:35:17 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2021-10-05 16:35:17 +0100 |
commit | cdea2f67ae42d4220e19a555259b69a960925283 (patch) | |
tree | b1cc697e6e0203b3ce02e15b8baa4f73f84e34c8 /psibuilds/gmp.psibuild | |
parent | 16e799786f34721e646e14a2b7e7ab3816137f1a (diff) |
renamed
Diffstat (limited to 'psibuilds/gmp.psibuild')
-rw-r--r-- | psibuilds/gmp.psibuild | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/psibuilds/gmp.psibuild b/psibuilds/gmp.psibuild deleted file mode 100644 index 4a62d77..0000000 --- a/psibuilds/gmp.psibuild +++ /dev/null @@ -1,25 +0,0 @@ -#!/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 -} - - |