summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 781220e9efd0064e33469ab4ffe58c2841a7a3a8 (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=onclick
pkgver=1.0.3
pkgrel=2
pkgdesc='Runs a command every time the terminal is clicked'
arch=('x86_64' 'aarch64')
url='https://sr.ht/~smlavine/onclick'
license=('MPLv2')
makedepends=('hare-git')
source=("https://git.sr.ht/~smlavine/onclick/archive/${pkgver}.tar.gz")
sha256sums=('df34d9d6fcaa530ed3207b79fac6cc769381e4061741ae0a7f66067cef9c56a0')

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

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