25d40ad515
CI / Build (push) Successful in 20s
Release / Release (push) Successful in 36s
Release / Debian packages (push) Successful in 33s
Release / VSCode Extension (push) Successful in 35s
Release / AUR package (push) Successful in 55s
Release / RPM package (push) Successful in 56s
Release / Windows installer (push) Successful in 59s
Release / DataGrip Plugin (push) Successful in 4m29s
CI / Test (push) Successful in 33s
Release / Test (push) Successful in 31s
20 lines
681 B
Bash
20 lines
681 B
Bash
# Maintainer: Hein (Warky Devs) <hein@warky.dev>
|
|
pkgname=pgtidy-bin
|
|
pkgver=0.0.7
|
|
pkgrel=1
|
|
pkgdesc="PostgreSQL SQL formatter and linter"
|
|
arch=('x86_64' 'aarch64')
|
|
url="https://git.warky.dev/wdevs/pgtidy"
|
|
license=('MIT')
|
|
provides=('pgtidy')
|
|
conflicts=('pgtidy')
|
|
source_x86_64=("$pkgname-$pkgver.tar.gz::$url/releases/download/v$pkgver/pgtidy_${pkgver}_linux_amd64.tar.gz")
|
|
source_aarch64=("$pkgname-$pkgver.tar.gz::$url/releases/download/v$pkgver/pgtidy_${pkgver}_linux_arm64.tar.gz")
|
|
sha256sums_x86_64=('SKIP')
|
|
sha256sums_aarch64=('SKIP')
|
|
|
|
package() {
|
|
install -Dm755 "pgtidy" "$pkgdir/usr/bin/pgtidy"
|
|
install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
|
}
|