summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5386b00a0a37f9e5059a623578bc6f1ae7813f6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Maintainer: Klaus Alexander Seistrup <klaus@seistrup.dk>
# -*- mode: sh -*-

pkgname='usrbinhx'
pkgver='2023.10.26'
pkgrel=1
pkgdesc='Provide /usr/bin/hx for the helix editor'
arch=('any')
url='https://codeberg.org/kas/gists'
license=('AGPL3')
conflicts=('hex' 'helixbinhx')
depends=('helix' 'sh')
source=('hx.sh')
sha256sums=('184cdaf013c0b3ac2fe4b95842f8f2ff97ae2fbe38e36e363badc419f9eaffa0')

package() {
  install -Dm0755 'hx.sh' "$pkgdir/usr/bin/hx"
}

# eof