mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 23:22:24 +01:00
39 lines
970 B
Plaintext
39 lines
970 B
Plaintext
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=speedcrunch
|
|
pkgver=0.12
|
|
pkgrel=0
|
|
pkgdesc="SpeedCrunch is a high-precision scientific calculator."
|
|
url="http://www.speedcrunch.org/"
|
|
arch="all"
|
|
license="GPL"
|
|
makedepends="cmake py-sphinx py-sphinx-theme-quark
|
|
qt5-qtbase-dev qt5-qttools-dev libxkbcommon-dev"
|
|
source="https://bitbucket.org/heldercorreia/speedcrunch/get/release-0.12.0.tar.bz2"
|
|
builddir="$srcdir/heldercorreia-speedcrunch-ea93b21f9498"
|
|
|
|
prepare() {
|
|
cd "$builddir"
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"/build
|
|
cmake ../src \
|
|
-DCMAKE_INSTALL_PREFIX="/usr" \
|
|
-DREBUILD_MANUAL=off
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"/build
|
|
make test
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"/build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="b41f147f2530735af2fad0ecef6047459baed03904ec6d8097a3f21d7d200c2d89beda77676ea1ff762c5c164cd7b639cae84942f61c869acd77aa380c80f141 release-0.12.0.tar.bz2"
|