blob: 4aaba166d16e2ca24a3b972531c112da736494ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: system64 <system64fumo@protonmail.com>
pkgname=mathfairy-git
pkgver=2024.1.9
pkgrel=1
pkgdesc="The strongest calculator in gensokyo"
arch=('aarch64' 'riscv64' 'x86_64')
url="https://github.com/System64fumo/mathfairy"
depends=('gtkmm-4.0')
makedepends=('git' 'gcc' 'make')
source=("git+https://github.com/System64fumo/mathfairy")
sha256sums=('SKIP')
build() {
cd "mathfairy"
make
}
package() {
cd "mathfairy"
make PREFIX=/usr DESTDIR="${pkgdir}" install
}
|