summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b23dc4e948615adc5bd33beddba582706e72fb20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Sebastian LaVine <mail@smlavine.com>

pkgname=gmnitohtml
pkgver=0.1.2
pkgrel=1
pkgdesc='Gemini text to HTML converter'
arch=('any')
url='https://git.sr.ht/~adnano/gmnitohtml'
license=('GPL3')
makedepends=('go' 'scdoc')
source=("https://git.sr.ht/~adnano/gmnitohtml/archive/${pkgver}.tar.gz")
sha256sums=('ae86594d0c3c0af8cc42ccf23b3463c1c20dd724395815a302699d10b9205d64')

build() {
	cd "${pkgname}-${pkgver}"
	make
}

package() {
	cd "${pkgname}-${pkgver}"
	make DESTDIR="$pkgdir/" PREFIX='/usr' install
}