summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b33215f1461f356ace14be92b6994fb810d80ab1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer: Gabriel Holmann <gholmann16 at gmail dot com>
pkgname=janus
pkgver=0.9.6
pkgrel=1
pkgdesc="Simple gtk notepad written in C"
url="https://github.com/gholmann16/janus"
arch=('any')
conflicts=('janus-gateway')
license=('GPL3')
depends=('gtk3' 'gtksourceview4')
source=("https://github.com/gholmann16/janus/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('13badbe9c3fddb6c96881e7e755521f0ffcbd60eee62fec5c540a2221134ced5')
build() {
	cd "Janus-$pkgver"
	make release
}

package() {
	cd "Janus-$pkgver"
	make install DESTDIR=${pkgdir}
}