From cb447620084a20be80d116c81c2e9ec110be7118 Mon Sep 17 00:00:00 2001 From: davidovski Date: Sun, 16 Jan 2022 01:23:51 +0000 Subject: restructured repo system --- repo/core/gmp.xibuild | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 repo/core/gmp.xibuild (limited to 'repo/core/gmp.xibuild') diff --git a/repo/core/gmp.xibuild b/repo/core/gmp.xibuild deleted file mode 100644 index 6c426bc..0000000 --- a/repo/core/gmp.xibuild +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/bash - -DEPS=(gcc-libs sh) - -SOURCE=https://gmplib.org/download/gmp/gmp-6.2.1.tar.xz -DESC="a collection of mathematical libraries" - -build () { - cp -v configfsf.guess config.guess - cp -v configfsf.sub config.sub - - ./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 - -} - -package() { - make DESTDIR=$PKG_DEST install - make DESTDIR=$PKG_DEST install-html -} -- cgit v1.2.1