mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
Initial release
This commit is contained in:
commit
6fd39d5dbd
2 changed files with 30 additions and 0 deletions
13
.SRCINFO
Normal file
13
.SRCINFO
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
pkgbase = cljfmt-bin
|
||||
pkgdesc = A formatter for Clojure code
|
||||
pkgver = 0.11.2
|
||||
pkgrel = 1
|
||||
url = https://github.com/weavejester/cljfmt
|
||||
arch = x86_64
|
||||
license = EPL-1.0
|
||||
provides = cljfmt
|
||||
conflicts = cljfmt
|
||||
source = https://github.com/weavejester/cljfmt/releases/download/0.11.2/cljfmt-0.11.2-linux-amd64-static.tar.gz
|
||||
sha256sums = d5f63d29e3092c15c12354bbf604577f45bf46f19fa9631415240b19e3001f6f
|
||||
|
||||
pkgname = cljfmt-bin
|
||||
17
PKGBUILD
Normal file
17
PKGBUILD
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
# Maintainer: Colin Woodbury <colin@fosskers.ca>
|
||||
|
||||
pkgname=cljfmt-bin
|
||||
pkgver=0.11.2
|
||||
pkgrel=1
|
||||
pkgdesc="A formatter for Clojure code"
|
||||
arch=('x86_64')
|
||||
url="https://github.com/weavejester/cljfmt"
|
||||
license=("EPL-1.0")
|
||||
provides=("cljfmt")
|
||||
conflicts=("cljfmt")
|
||||
source=("https://github.com/weavejester/cljfmt/releases/download/${pkgver}/cljfmt-${pkgver}-linux-amd64-static.tar.gz")
|
||||
sha256sums=('d5f63d29e3092c15c12354bbf604577f45bf46f19fa9631415240b19e3001f6f')
|
||||
|
||||
package() {
|
||||
install -Dm0755 -t "$pkgdir/usr/bin/" "${pkgname%-bin}"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue