Date: Wednesday, November 9, 2022 @ 10:24:06
  Author: alerque
Revision: 1346139

archrelease: copy trunk to community-x86_64

Added:
  github-cli/repos/community-x86_64/PKGBUILD
    (from rev 1346138, github-cli/trunk/PKGBUILD)

----------+
 PKGBUILD |   53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 53 insertions(+)

Copied: github-cli/repos/community-x86_64/PKGBUILD (from rev 1346138, 
github-cli/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2022-11-09 10:24:06 UTC (rev 1346139)
@@ -0,0 +1,53 @@
+# Maintainer: Morten Linderud <[email protected]>
+# Maintainer: Caleb Maclennan <[email protected]>
+# Contributor: Eli Schwartz <[email protected]>
+# Contributor: Richard Bradfield <[email protected]>
+
+pkgname=github-cli
+pkgver=2.20.0
+pkgrel=1
+pkgdesc="The GitHub CLI"
+arch=("x86_64")
+url="https://github.com/cli/cli";
+license=("MIT")
+depends=("glibc" "mailcap")
+makedepends=("go" "git")
+checkdepends=("openssh")
+optdepends=("git: To interact with repositories")
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('d8c16de9dc4ed5b42c84eca1be51f2bd84cb181b6f0cb932b6af4d8b2de8342d')
+
+prepare() {
+    cd "cli-${pkgver}"
+    # TODO: These tests invoke the TTY and our container *really* does not 
like that
+    rm pkg/cmd/auth/login/login_test.go
+}
+
+build() {
+    cd "cli-$pkgver"
+
+    export CGO_CPPFLAGS="${CPPFLAGS}"
+    export CGO_CFLAGS="${CFLAGS}"
+    export CGO_CXXFLAGS="${CXXFLAGS}"
+    export CGO_LDFLAGS="${LDFLAGS}"
+    export CGO_ENABLED=0
+    export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw 
-ldflags=-linkmode=external"
+
+    make GH_VERSION="v$pkgver" bin/gh manpages
+    bin/gh completion -s bash | install -Dm644 /dev/stdin 
share/bash-completion/completions/gh
+    bin/gh completion -s zsh | install -Dm644 /dev/stdin 
share/zsh/site-functions/_gh
+    bin/gh completion -s fish | install -Dm644 /dev/stdin 
share/fish/vendor_completions.d/gh.fish
+}
+
+check(){
+    cd "cli-$pkgver"
+    make test
+}
+
+package() {
+    cd "cli-$pkgver"
+    make DESTDIR="${pkgdir}" prefix="/usr" install
+    cp -r share/ "$pkgdir"/usr
+    install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+    install -Dm644 "README.md" "$pkgdir/usr/share/doc/$pkgname/README.md"
+}

Reply via email to