PKGBUILDs/extra/cantor/PKGBUILD

70 lines
1.9 KiB
Bash
Raw Permalink Normal View History

2016-12-17 23:38:25 +00:00
# Maintainer: Felix Yan <felixonmars@archlinux.org>
2017-08-28 17:29:38 +00:00
# Maintainer: Antonio Rojas <arojas@archlinux.org>
2016-12-17 23:38:25 +00:00
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - drop julia make/optdepends, doesn't build on ARM
pkgname=cantor
2024-09-12 14:20:29 +00:00
pkgver=24.08.1
2024-05-26 03:34:31 +00:00
pkgrel=1
2021-04-23 12:29:54 +00:00
pkgdesc='KDE Frontend to Mathematical Software'
url='https://apps.kde.org/cantor/'
2017-12-17 14:34:00 +00:00
arch=(x86_64)
2024-03-06 17:14:16 +00:00
license=(GPL-2.0-or-later LGPL-2.0-or-later)
depends=(gcc-libs
glibc
karchive5
kcompletion5
kconfig5
kconfigwidgets5
kcoreaddons5
kcrash5
ki18n5
kiconthemes5
kio5
knewstuff5
kparts5
ktexteditor5
ktextwidgets5
kwidgetsaddons5
kxmlgui5
libqalculate
libspectre
poppler-qt5
qt5-base
qt5-svg
qt5-tools
qt5-webengine
qt5-xmlpatterns
syntax-highlighting5)
makedepends=(extra-cmake-modules
kdoctools5
luajit
python
r)
2016-12-17 23:38:25 +00:00
optdepends=('maxima: Maxima backend'
'octave: Octave backend'
'r: R backend'
'luajit: LUA backend'
'python: Python backend'
2024-03-06 17:14:16 +00:00
'sagemath: SageMath backend')
groups=(kde-applications
kde-education)
2021-04-23 12:29:54 +00:00
source=(https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz{,.sig})
2024-09-12 14:20:29 +00:00
sha256sums=('18e4ae0412c50e06cd5f665072aa9a32281e2e8315eed8cd2aceb6e2334cf17a'
2021-04-23 12:29:54 +00:00
'SKIP')
2017-07-13 18:24:14 +00:00
validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7 # Albert Astals Cid <aacid@kde.org>
2021-02-04 14:09:59 +00:00
F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87 # Christoph Feck <cfeck@kde.org>
D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker <heiko.becker@kde.org>
2016-12-17 23:38:25 +00:00
build() {
2020-06-11 19:27:58 +00:00
cmake -B build -S $pkgname-$pkgver \
2019-12-12 13:59:32 +00:00
-DBUILD_TESTING=OFF
2020-06-11 19:27:58 +00:00
cmake --build build
2016-12-17 23:38:25 +00:00
}
package() {
2020-06-11 19:27:58 +00:00
DESTDIR="$pkgdir" cmake --install build
2016-12-17 23:38:25 +00:00
}