From 12160789d238a0ce264c2acc2e2d97bd40652403 Mon Sep 17 00:00:00 2001 From: Nilesh Date: Sat, 12 Feb 2022 21:37:28 +0530 Subject: [PATCH] Use different name for downloade file The downloaded source filename must be unique because the SRCDEST directory can be the same for all packages. Due to this, building package would fail without this. --- PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKGBUILD b/PKGBUILD index b339d348d011..15f51610ee7d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgver=0.2.5 pkgrel=1 pkgdesc='Dynamic key remapper for X11 and Wayland' url='https://github.com/k0kubun/xremap' -source_x86_64=("https://github.com/k0kubun/xremap/releases/download/v$pkgver/xremap-linux-x86_64-x11.zip") +source_x86_64=("$pkgname-$pkgver.zip::https://github.com/k0kubun/xremap/releases/download/v$pkgver/xremap-linux-x86_64-x11.zip") arch=('x86_64') license=('MIT') provides=('xremap')