summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2c9788aae5f95544f5d3c47695594c3524cc12e9 (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: Takayuki Tanaka <aharotias2@gmail.com.org>

pkgname=parapara
pkgver=3.2.9
pkgrel=1
pkgdesc='A picture viewer that has 3 display modes: single, spread, continuous.'
url='https://github.com/aharotias2/parapara'
license=('GPLv3')
arch=('x86_64')
depends=('gtk3' 'granite' 'libgee')
makedepends=('vala' 'meson')
optdepends=()
install=.INSTALL
source=("https://github.com/aharotias2/${pkgname}/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('a8f523068977455f6ac7aa1ed9d880282fc6e97a7c4ef1e0a63c95679d6f3e37')

build() {
	cd "${srcdir}/${pkgname}-${pkgver}"
	meson --prefix=/usr --buildtype=release --optimization=2 build
	cd build
	ninja
}

package() {
	cd "${srcdir}/${pkgname}-${pkgver}/build"
	meson install --destdir ${pkgdir}
}