Date: Thursday, June 16, 2022 @ 15:22:13
  Author: alerque
Revision: 1238132

archrelease: copy trunk to community-testing-x86_64

Added:
  mmctl/repos/community-testing-x86_64/
  mmctl/repos/community-testing-x86_64/PKGBUILD
    (from rev 1238131, mmctl/trunk/PKGBUILD)

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

Copied: mmctl/repos/community-testing-x86_64/PKGBUILD (from rev 1238131, 
mmctl/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD                           (rev 0)
+++ community-testing-x86_64/PKGBUILD   2022-06-16 15:22:13 UTC (rev 1238132)
@@ -0,0 +1,41 @@
+# Maintainer: Caleb Maclennan <[email protected]>
+# Contributor: Jesús Espino <[email protected]>
+
+pkgname=mmctl
+pkgver=6.7.2
+pkgrel=1
+pkgdesc='A remote CLI tool for Mattermost'
+arch=(x86_64)
+url="https://github.com/mattermost/$pkgname";
+license=(Apache)
+depends=(gcc-libs)
+makedepends=(go
+             git)
+_archive="$pkgname-$pkgver"
+source=("$url/archive/v$pkgver/$_archive.tar.gz")
+sha256sums=('d2a608524d0916ed71e646076dbff7cd10697ed3352c29e2ede9060ef6a13539')
+
+prepare() {
+       cd "$_archive"
+       go mod vendor
+}
+
+build() {
+       local _commit=$(zcat ${source[0]##*/} | git get-tar-commit-id)
+       cd "$_archive"
+       export CGO_LDFLAGS="$LDFLAGS"
+       local _config=${url##https://}/commands
+       go build \
+               -trimpath \
+               -buildmode=pie \
+               -mod=readonly \
+               -modcacherw \
+               -ldflags "-linkmode external -X \"$_config.gitCommit=$_commit\" 
-X \"$_config.gitTreeState=clean\" -X \"$_config.buildDate=$(date --utc 
--date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +"%Y-%m-%d %H:%M:%S")\"" \
+               .
+}
+
+package() {
+       cd "$_archive"
+       install -Dm0755 -t "$pkgdir/usr/bin/" "$pkgname"
+       install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE.txt
+}

Reply via email to