summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d75c26e1aaa7317f1074bb8f679cb4d48fff3d5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Maintainer: Arun Narayanankutty <n.arun.lifescience@gmail.com>

pkgname=alphaplot
pkgver=1.01_alpha_git
pkgrel=1
pkgdesc="Application for Scientific Data Analysis and Visualization, fork of SciDavis / QtiPlot"
url='http://alphaplot.sourceforge.net/'
arch=('i686' 'x86_64')
license=('GPL2')

# make dependancies
makedepends=('boost' 'cmake' 'qt5-tools' 'qt5-datavis3d')
depends=('gsl' 'glu' 'mesa' 'shared-mime-info' 'desktop-file-utils')

# source download from git repo & prepare
source=(git+https://github.com/narunlifescience/alphaplot.git)
install=${pkgname}.install
sha256sums=('SKIP')
prepare() {
  cd "${srcdir}"
}

# start building
build() {
  cd "${srcdir}/${pkgname}"
  qmake
  make
}

# prepare package
package() {
  cd "${srcdir}/${pkgname}"
  make INSTALL_ROOT="${pkgdir}" DESTDIR="${pkgdir}" install
}