mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
27 lines
788 B
Bash
27 lines
788 B
Bash
source ../kdeapps.conf
|
|
|
|
pkgname=labplot
|
|
pkgver=2.2.0
|
|
pkgrel=1
|
|
pkgdesc="A free software data analysis and visualization application build on top of KDE SC"
|
|
arch=('x86_64')
|
|
url='http://labplot.sourceforge.net/'
|
|
license=('GPL')
|
|
depends=('hdf5' 'netcdf' 'gsl' 'qt5-base' 'qt5-svg' 'karchive' 'ki18n' 'kwidgetsaddons'
|
|
'kxmlgui' 'kio' 'kdelibs4support' 'kdoctools')
|
|
makedepends=('cmake' 'extra-cmake-modules')
|
|
conflicts=('labplot2-svn')
|
|
source=("http://download.kde.org/stable/${pkgname}/${pkgver}/${pkgname}-${pkgver}-kf5.tar.xz")
|
|
sha256sums=('ba02f3faf1e9c9757e4f2497d828bdeed5af15200c94faab9066ea32e1105119')
|
|
|
|
build() {
|
|
cd "${srcdir}"/${pkgname}-${pkgver}-kf5
|
|
cmake_kf5
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}"/${pkgname}-${pkgver}-kf5
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|