summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: afdd58a7ded1a163fb96c9a6c1cf2124ad0a2ac8 (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
# Maintainer: Czcibor Bohusz-Dobosz <czbd o2 pl>

_pkgname=qalculate-qt
pkgname=${_pkgname}-git
pkgver=r145.b9ef6df
pkgrel=1
pkgdesc='Qt5 frontend for libqalculate'
arch=('x86_64' 'i686' 'aarch64' 'armv7h')
url='https://qalculate.github.io/'
license=('GPL')
depends=("libqalculate-git" 'qt6-svg' 'hicolor-icon-theme')
makedepends=('qt6-tools')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
source=('git+https://github.com/Qalculate/qalculate-qt.git')
md5sums=('SKIP')

build() {
  cd "${_pkgname}"
  qmake6 PREFIX=/usr
  make
}

package() {
  cd "${_pkgname}"
  make INSTALL_ROOT="${pkgdir}" install
}