Updated doas; added kakoune and kati

This commit is contained in:
Ella-0 2020-12-29 15:47:35 +00:00
parent 3f540144cb
commit 7321e82d2a
4 changed files with 123 additions and 0 deletions

23
pkgs/kati/build.sh Normal file
View file

@ -0,0 +1,23 @@
pkgver=0.0.0
pkgname=kati
pkgrel=1
fetch() {
git clone --depth=1 "https://github.com/google/kati"
}
build() {
cd $pkgname
ckati
}
package() {
cd $pkgname
install -d $pkgdir/bin
install -Dm755 ./ckati $pkgdir/bin/
}
license() {
cd $pkgname
cat LICENSE
}