mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
045d1a7ef8
[skip-ci] files on ftp server, build manually
61 lines
2.0 KiB
Bash
61 lines
2.0 KiB
Bash
# Contributions from Arch: https://www.archlinux.org/packages/extra/x86_64/kdeedu-cantor/
|
|
# Include global configuration
|
|
|
|
pkgname=cantor
|
|
pkgver=18.08.1
|
|
pkgrel=1
|
|
pkgdesc="KDE frontend to mathematical software"
|
|
url="http://kde.org/applications/education/cantor/"
|
|
screenshot="https://www.kde.org/images/screenshots/cantor.png"
|
|
arch=('x86_64')
|
|
license=('GPL' 'LGPL' 'FDL')
|
|
depends=('analitza' 'libspectre' 'kpty' 'ktexteditor' 'knewstuff' 'libqalculate' 'hicolor-icon-theme')
|
|
optdepends=('maxima: Maxima backend'
|
|
'octave: Octave backend'
|
|
'r: R backend'
|
|
'luajit: LUA backend'
|
|
'python3: Python 3 backend'
|
|
'python2: Python 2 backend'
|
|
'sagemath: SageMath backend')
|
|
#'julia: Julia backend')
|
|
makedepends=('extra-cmake-modules' 'python3' 'python2' 'kdoctools' 'luajit' 'r') # 'julia')
|
|
replaces=('kdeedu-cantor')
|
|
conflicts=('kdeedu-cantor')
|
|
groups=('kde' 'kde-uninstall' 'kde-applications' 'kdeedu')
|
|
options=('docs' 'debug')
|
|
source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
|
|
sha256sums=('6b6dbe616606f4160987d4eef578a2a325263a723e3c96714170d3135cf69b15'
|
|
'SKIP')
|
|
validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7 # Albert Astals Cid <aacid@kde.org>
|
|
F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck <cfeck@kde.org>
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
# wait patch for julia, enable later when the operato names are fixed
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DKDE_INSTALL_LIBDIR=lib \
|
|
-DKDE_INSTALL_SYSCONFDIR=/etc \
|
|
-DKDE_INSTALL_LIBEXECDIR=lib \
|
|
-DUDEV_RULES_INSTALL_DIR=/usr/lib/udev/rules.d \
|
|
-DBUILD_TESTING=OFF \
|
|
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON "$@" \
|
|
-DPYTHON_INCLUDE_DIR=/usr/include/python2.7 \
|
|
-DPYTHON_LIBRARY=/usr/lib/libpython2.7.so
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR=${pkgdir} install
|
|
}
|
|
|