mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
29 lines
699 B
Bash
29 lines
699 B
Bash
pkgname=labplot
|
|
pkgver=2.0.2
|
|
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=('kdelibs' 'hdf5' 'netcdf' 'gsl')
|
|
makedepends=('cmake' 'automoc4' 'docbook-xsl')
|
|
conflicts=('labplot2-svn')
|
|
source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz")
|
|
sha256sums=('f52e00006e2ce87aeda5bf15b950155e5db71cde4b0e1fb0819b6e71aaf6dee0')
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}"/${pkgname}-${pkgver}
|
|
|
|
./compile
|
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}"/${pkgname}-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|