Package Details: figma-agent-linux-bin 0.4.3-1

Git Clone URL: https://aur.archlinux.org/figma-agent-linux-bin.git (read-only, click to copy)
Package Base: figma-agent-linux-bin
Description: A lightweight local service that makes your locally installed fonts available on Figma.
Upstream URL: https://github.com/neetly/figma-agent-linux
Licenses: MIT
Conflicts: figma-agent-linux
Provides: figma-agent-linux
Submitter: tokenize
Maintainer: tokenize
Last Packager: tokenize
Votes: 7
Popularity: 0.68
First Submitted: 2024-01-20 15:31 (UTC)
Last Updated: 2026-02-21 22:43 (UTC)

Latest Comments

tokenize commented on 2025-10-17 17:02 (UTC)

@gwuensch Thanks for your suggestion. I changed the PKGBUILD to include the version in filenames.

gwuensch commented on 2025-10-16 16:01 (UTC)

Hi! Can you please add the pkgver to the source names, so that makepkg can automatically redownload these files on version bumps?

diff --git a/PKGBUILD b/PKGBUILD
index 933e67f..80a832c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -11,11 +11,11 @@ optdepends=(fontconfig)
 makedepends=()
 provides=(figma-agent-linux)
 conflicts=(figma-agent-linux)
-source=("https://raw.githubusercontent.com/neetly/figma-agent-linux/$pkgver/LICENSE"
-        "https://raw.githubusercontent.com/neetly/figma-agent-linux/$pkgver/files/figma-agent.service"
-        "https://raw.githubusercontent.com/neetly/figma-agent-linux/$pkgver/files/figma-agent.socket")
-source_x86_64=("figma-agent::https://github.com/neetly/figma-agent-linux/releases/download/$pkgver/figma-agent-x86_64-unknown-linux-gnu")
-source_aarch64=("figma-agent::https://github.com/neetly/figma-agent-linux/releases/download/$pkgver/figma-agent-aarch64-unknown-linux-gnu")
+source=("LICENSE-${pkgver}::https://raw.githubusercontent.com/neetly/figma-agent-linux/$pkgver/LICENSE"
+        "figma-agent.service-${pkgver}::https://raw.githubusercontent.com/neetly/figma-agent-linux/$pkgver/files/figma-agent.service"
+        "figma-agent.socket-${pkgver}::https://raw.githubusercontent.com/neetly/figma-agent-linux/$pkgver/files/figma-agent.socket")
+source_x86_64=("figma-agent-${pkgver}::https://github.com/neetly/figma-agent-linux/releases/download/$pkgver/figma-agent-x86_64-unknown-linux-gnu")
+source_aarch64=("figma-agent-${pkgver}::https://github.com/neetly/figma-agent-linux/releases/download/$pkgver/figma-agent-aarch64-unknown-linux-gnu")
 sha256sums=('ed27b7a5adb3229f6713cd1a924bfd0195a4f70d63379ba40b6cd8041128d672'
             'a2c6732e17d3f227f08269820aec84383042db89b45f31fa800fa7f2fe122232'
             'bddc08a2e52e76f6b883a725f9aeb50363055be09115da30e101f022521b64fe')
@@ -24,8 +24,8 @@ sha256sums_aarch64=('0b4a21478564f1596847ed14e66116044c13b120e494f8a07944f9597d7
 install=figma-agent.install

 package() {
-  install -Dm755 "./figma-agent" "$pkgdir/usr/bin/figma-agent"
-  install -Dm644 "./LICENSE" "$pkgdir/usr/share/licenses/figma-agent/LICENSE"
-  install -Dm644 "./figma-agent.service" "$pkgdir/usr/lib/systemd/user/figma-agent.service"
-  install -Dm644 "./figma-agent.socket" "$pkgdir/usr/lib/systemd/user/figma-agent.socket"
+  install -Dm755 "./figma-agent-${pkgver}" "$pkgdir/usr/bin/figma-agent"
+  install -Dm644 "./LICENSE-${pkgver}" "$pkgdir/usr/share/licenses/figma-agent/LICENSE"
+  install -Dm644 "./figma-agent.service-${pkgver}" "$pkgdir/usr/lib/systemd/user/figma-agent.service"
+  install -Dm644 "./figma-agent.socket-${pkgver}" "$pkgdir/usr/lib/systemd/user/figma-agent.socket"
 }