diff options
| author | Guillaume Horel <guillaume.horel@gmail.com> | 2026-07-21 09:19:03 -0400 |
|---|---|---|
| committer | Guillaume Horel <guillaume.horel@gmail.com> | 2026-07-21 09:19:03 -0400 |
| commit | 6c6691a7c53279ce52015454025be8f61be8129a (patch) | |
| tree | 6e4765deb8e79772206a25c8bad9da7526428be9 /pgschema/PKGBUILD | |
| parent | ac613ee835afa02cb448987ee444bf5daf40d66e (diff) | |
| download | arch-pkgs-6c6691a7c53279ce52015454025be8f61be8129a.tar.gz | |
pgschema initial import
Diffstat (limited to 'pgschema/PKGBUILD')
| -rw-r--r-- | pgschema/PKGBUILD | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/pgschema/PKGBUILD b/pgschema/PKGBUILD new file mode 100644 index 0000000..e9bb20a --- /dev/null +++ b/pgschema/PKGBUILD @@ -0,0 +1,39 @@ +# Maintainer: Guillaume Horel <guillaume.horel@gmail.com> + +pkgname=pgschema +pkgver=1.12.0 +pkgrel=1 +pkgdesc="Declarative schema migration for Postgres" +arch=('x86_64') +url="https://github.com/pgplex/pgschema" +license=('Apache-2.0') +depends=('glibc') +makedepends=('go') +source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz") +sha256sums=('68e627939cc8e1eced8de79cbad6a6ceb809ca3bbe06831677da631f8134b7f5') + +build() { + cd "$pkgname-$pkgver" + + local builddate + builddate=$(date -u -d "@${SOURCE_DATE_EPOCH:-$(date +%s)}" +"%Y-%m-%d %H:%M:%S") + + export CGO_CPPFLAGS="${CPPFLAGS}" + export CGO_CFLAGS="${CFLAGS}" + export CGO_CXXFLAGS="${CXXFLAGS}" + export CGO_LDFLAGS="${LDFLAGS}" + export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw" + + go build \ + -ldflags "-linkmode=external \ + -X github.com/pgplex/pgschema/cmd.GitCommit=v$pkgver \ + -X 'github.com/pgplex/pgschema/cmd.BuildDate=$builddate'" \ + -o "$pkgname" . +} + +package() { + cd "$pkgname-$pkgver" + install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname" + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" + install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md" +} |
