summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 22246a1865812df22d9a61e79106301b1572dd10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer: Thanos Apostolou <thanosapostolou@outlook.com>
pkgname=thapo-calc
pkgver=0.2
pkgrel=1
pkgdesc="ThApo-Calc (Thanos Apostolou' Calculator) is a simple calculator written in c++"
arch=('x86_64')
url="https://gitlab.com/ThanosApostolou/thapo-calc"
license=('GPL3')
source=("https://gitlab.com/ThanosApostolou/thapo-calc/-/archive/0.2/thapo-calc-0.2.tar.gz")
md5sums=('538d580e92fa92f694e793e72b509a73')

build() {
	cd "$pkgname-$pkgver"
        arch-meson builddir
	ninja -C builddir
}

package() {
	cd "$pkgname-$pkgver"
	DESTDIR="$pkgdir/" ninja -C builddir install
}