Received: from knopi.disroot.org (knopi.disroot.org [178.21.23.139]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 003D8781BB6 for ; Mon, 2 Sep 2019 12:04:48 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 147FA2512B for ; Mon, 2 Sep 2019 14:04:48 +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 ESMTP id 7G78UTk11U-y; Mon, 2 Sep 2019 14:04:46 +0200 (CEST) From: Bart Ribbers DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1567425886; bh=04e1vkTZE769b5CdvCXz9Y9bSkYmmDg8lqmkVMnvPNY=; h=From:To:Cc:Subject:Date; b=NN3m1TyNCDle4WdVo1anqroEojze3w5BtLumcdFvWbznsr9C4+6V86gUkO2FvM/ZF Ct8rbhCutSAvo9MNRhE7x7UqvZJk7kEckwtJqE9W8rDTfiHFS6Pr181FZ8iB8/qLVX qNdUJiML0/rx1f1l23nESnG+ixoSLbhKMUQtwYq1tRPXjncxdTWOwo1xJ+usaa8nCQ mk0kcYclb9Oq7JXratQk2D6hreZ3/4SbqYcA57oUpsic0VEtda9HZFEld83igtimTH yYBv2l8Ygz93ilWrUepeKvW59fSl3y6HJWtg3KGfdng/PzLH4pG+N613cu8OFmPAen 4OUgWCSrRtdXw== To: alpine-aports@lists.alpinelinux.org Cc: Bart Ribbers Subject: [PATCH 1/3] testing/analitza: new aport Date: Mon, 2 Sep 2019 14:04:40 +0200 Message-Id: <20190902120442.17741-1-bribbers@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit --- testing/analitza/APKBUILD | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 testing/analitza/APKBUILD diff --git a/testing/analitza/APKBUILD b/testing/analitza/APKBUILD new file mode 100644 index 0000000000..a0eaa52611 --- /dev/null +++ b/testing/analitza/APKBUILD @@ -0,0 +1,31 @@ +# Contributor: Bart Ribbers +# Maintainer: Bart Ribbers +pkgname=analitza +pkgver=19.08.0 +pkgrel=0 +arch="all" +url="https://edu.kde.org/" +pkgdesc="A library to add mathematical features to your program" +license="GPL-2.0-or-later AND GFDL-1.2-only" +makedepends="extra-cmake-modules qt5-qtbase-dev qt5-qtdeclarative-dev qt5-qtsvg-dev qt5-qttools-dev eigen-dev" +checkdepends="xvfb-run" +source="https://download.kde.org/stable/applications/$pkgver/src/analitza-$pkgver.tar.xz" +subpackages="$pkgname-dev $pkgname-lang" + +build() { + cmake \ + -DCMAKE_BUILD_TYPE=RelWithDebInfo \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib + make +} + +check() { + CTEST_OUTPUT_ON_FAILURE=TRUE xvfb-run ctest +} + +package() { + DESTDIR="$pkgdir" make install +} + +sha512sums="cef8eef841feb1223e2bfbc4168efe3f6a7cf7d28936ff601047255cfe30df4385250a13b1ba78bb90a8e9677ea8e77a31a3c3025006bbdc17eb6e86d81dc1be analitza-19.08.0.tar.xz" -- 2.23.0