Date: Thursday, March 2, 2023 @ 07:49:20
Author: alerque
Revision: 1406281
archrelease: copy trunk to community-x86_64
Added:
mmctl/repos/community-x86_64/PKGBUILD
(from rev 1406280, mmctl/trunk/PKGBUILD)
----------+
PKGBUILD | 41 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
Copied: mmctl/repos/community-x86_64/PKGBUILD (from rev 1406280,
mmctl/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-03-02 07:49:20 UTC (rev 1406281)
@@ -0,0 +1,41 @@
+# Maintainer: Caleb Maclennan <[email protected]>
+# Contributor: Jesús Espino <[email protected]>
+
+pkgname=mmctl
+pkgver=7.8.1
+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=('ea1f55817d148b0844869975ed804702d7794e49d09be2e61434f4380f06971b')
+
+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
+}