summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: efc89b07a88bc36c65e89e2c7746642f7705cac6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Daniel R. Güell <daniel@drguell.es>
pkgname=masskulator
pkgver=0.3.1
pkgrel=1
pkgdesc="A simple application to plot a chart with weight evolution."
arch=(x86_64)
url="https://gitlab.com/drguell/masskulator"
license=(GPL3)
depends=(qt5-charts)
makedepends=(git qt5-tools cmake extra-cmake-modules kcmutils5 kdoctools5)
source=("git+https://gitlab.com/drguell/$pkgname.git#tag=v$pkgver")
sha256sums=('SKIP')

build() {
    cd "$pkgname"
    cmake .
    make
}

package() {
    cd "$pkgname"
    make DESTDIR="${pkgdir}/" install
}