mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 02:47:18 +08:00
27 lines
792 B
Bash
27 lines
792 B
Bash
source ../kdeapps.conf
|
|
|
|
pkgname=labplot
|
|
pkgver=2.1.0
|
|
pkgrel=2
|
|
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}/src/${pkgname}-kf5-${pkgver}.tar.xz")
|
|
sha256sums=('53f1e4c2fb1f08843b5c387a6259f1e8d6072c0efe0f2b2df64e38ade0080120')
|
|
|
|
build() {
|
|
cd "${srcdir}"/${pkgname}-kf5-${pkgver}
|
|
cmake_kf5
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}"/${pkgname}-kf5-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|