blob: 0758078547b3c0c75ad76ff1289a40e22348cb96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Chinmay Dalal <w5vwg64uy@relay.firefox.com>
pkgname="fnlfmt-git"
pkgver=0.2.2
pkgrel=1
pkgdesc="Format your Fennel!"
arch=("any")
url="https://git.sr.ht/~technomancy/fnlfmt"
license=("GPL3")
depends=("lua")
makedepends=("lua" "make")
source=("git+https://git.sr.ht/~technomancy/fnlfmt")
sha256sums=('SKIP')
build() {
cd fnlfmt
make
}
package() {
install -D -m755 "$srcdir/fnlfmt/fnlfmt" "$pkgdir/usr/bin/fnlfmt"
}
|