blob: 06c2284a8038d3d5c3290a3d41adfc438acb9430 (
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: Neal Buchanan <neal.buchanan@gmx.com>
pkgname=markets-git
_pkgname=markets
pkgver=0.5.5
pkgrel=1
pkgdesc="Track stocks, currencies and cryptocurrencies"
arch=('x86_64')
url="https://github.com/tomasz-oponowicz/markets"
license=('GPL3')
depends=('meson' 'vala' 'libgee')
optdepends=()
source=("https://github.com/tomasz-oponowicz/markets/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('2cae01a79d72623e81b549de122077afc26b3cf580f760ccdd7ffe369f799bb5')
build() {
cd $_pkgname-$pkgver
meson build --prefix=/usr
cd build
ninja
}
package() {
cd $_pkgname-$pkgver/build
meson install --no-rebuild --destdir="${pkgdir}"
}
|