From b1eb50599e4db7eb4501af75cbbfa22007081ea5 Mon Sep 17 00:00:00 2001 From: "A. Wilcox" Date: Thu, 14 Jun 2018 02:22:19 -0500 Subject: The New Plan all pkgs needed to bootstrap -> system others -> user --- system/gmp/APKBUILD | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 system/gmp/APKBUILD (limited to 'system/gmp/APKBUILD') diff --git a/system/gmp/APKBUILD b/system/gmp/APKBUILD new file mode 100644 index 000000000..225e7b6a0 --- /dev/null +++ b/system/gmp/APKBUILD @@ -0,0 +1,61 @@ +# Maintainer: Natanael Copa +pkgname=gmp +pkgver=6.1.2 +pkgrel=1 +pkgdesc="A free library for arbitrary precision arithmetic" +url="https://gmplib.org/" +arch="all" +license="LGPL-3.0" +makedepends="m4 texinfo libtool" +depends= +subpackages="$pkgname-doc $pkgname-dev libgmpxx" +source="https://gmplib.org/download/gmp/gmp-$pkgver.tar.xz + " +replaces="gmp5" + +prepare() { + cd "$builddir" + default_prepare + # force update to libtool with fixed cross-build support + libtoolize -f +} + +build() { + cd "$builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --with-sysroot=$CBUILDROOT \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --localstatedir=/var/state/gmp \ + --enable-cxx \ + --with-pic + make +} + +package() { + cd "$builddir" + make -j1 DESTDIR="${pkgdir}" install +} + +check() { + cd "$builddir" + [ "$CBUILD" = "$CHOST" ] && make check +} + +libgmpxx() { + pkgdesc="C++ support for gmp" + mkdir -p "$subpkgdir"/usr/lib/ + mv "$pkgdir"/usr/lib/libgmpxx.so.* "$subpkgdir"/usr/lib/ +} + +doc() { + default_doc + replaces="gmp5-doc" +} + +md5sums="f58fa8001d60c4c77595fbbb62b63c1d gmp-6.1.2.tar.xz" +sha256sums="87b565e89a9a684fe4ebeeddb8399dce2599f9c9049854ca8c0dfbdea0e21912 gmp-6.1.2.tar.xz" +sha512sums="9f098281c0593b76ee174b722936952671fab1dae353ce3ed436a31fe2bc9d542eca752353f6645b7077c1f395ab4fdd355c58e08e2a801368f1375690eee2c6 gmp-6.1.2.tar.xz" -- cgit v1.2.3-60-g2f50