Received: from knopi.disroot.org (knopi.disroot.org [178.21.23.139]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 79181781DE4 for ; Fri, 23 Aug 2019 17:12:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 6A39C214FA for ; Fri, 23 Aug 2019 19:02:55 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with UTF8SMTP id GPhcZHw7cRLF; Fri, 23 Aug 2019 19:02:54 +0200 (CEST) From: Bart Ribbers DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1566579769; bh=nW4V/hC2PvH/x5KeMAfEwyM7paMUUS0VmyMvUwl0kAI=; h=From:To:Cc:Subject:Date; b=ihlyCpBZ9ltt5Z0lClwwFjxlCEPE6GnSFOBfNvP+MBAam2JMGmrhYlVE1VDj1bE6r NV9vANY6NQkTlr6WeW8S1aSLi5vDLHtO+6qmawrPLdSr2A4liftOiEqJaIfzn2wCj+ flNjUaqWxSaYCyIrIQKuxTohdnN+bQnWWPJTWOvPI3/0/LIL9RkDwz2Cvzp4gSd9A9 dpKewfmOnGcmdcWw1+gB2FEYRoVy3r8YaapeyWIeQPPQ0szyC+wT2vL9Ry0mhSxtis dXg5Me8y5qctmzJvQARKiyjh/0NIpPDVcqsdeoUzAr4t/4QSC04FtUVLWMKOA7TvAp rG17FilkSRf9Q== To: alpine-aports@lists.alpinelinux.org Cc: Bart Ribbers Subject: [PATCH 1/2] testing/mpfr: new aport Date: Fri, 23 Aug 2019 19:01:27 +0200 Message-Id: <20190823170128.25329-1-bribbers@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit A new requirement for testing/kcalc --- testing/mpfr/APKBUILD | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 testing/mpfr/APKBUILD diff --git a/testing/mpfr/APKBUILD b/testing/mpfr/APKBUILD new file mode 100644 index 0000000000..76e1b8d154 --- /dev/null +++ b/testing/mpfr/APKBUILD @@ -0,0 +1,29 @@ +# Contributor: Bart Ribbers +# Maintainer: Bart Ribbers +pkgname=mpfr +pkgver=4.0.2 +pkgrel=0 +arch="all" +url="https://mpfr.org" +pkgdesc="Speech Synthesizer Frontend" +license="LGPL-3.0-or-later" +depends_dev="gmp-dev" +makedepends="$depends_dev" +source="http://mpfr.org/mpfr-$pkgver/mpfr-$pkgver.tar.xz" +subpackages="$pkgname-static $pkgname-dev $pkgname-doc" + +build() { + ./configure --prefix=/usr --enable-thread-safe --enable-shared + make +} + +check() { + make check + make check-exported-symbols +} + +package() { + DESTDIR="$pkgdir" make install +} + +sha512sums="d583555d08863bf36c89b289ae26bae353d9a31f08ee3894520992d2c26e5683c4c9c193d7ad139632f71c0a476d85ea76182702a98bf08dde7b6f65a54f8b88 mpfr-4.0.2.tar.xz" -- 2.23.0