aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authordanehobrecht2023-12-14 12:41:36 -0800
committerdanehobrecht2023-12-14 12:41:36 -0800
commit544b24833bee977feab48acf31bdbfcb7e4bcca3 (patch)
treebc3c4c6921fbc670096e7266b46f9c2c4ff3b33d
parent3ad2ce71a7019e1741401c09fd9e1f6279b91161 (diff)
downloadaur-544b24833bee977feab48acf31bdbfcb7e4bcca3.tar.gz
modified: .SRCINFO
modified: PKGBUILD
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 4 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 64b26282799d..a575ef1158ce 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -5,8 +5,8 @@ pkgbase = fzd-bin
url = https://github.com/danehobrecht/fzd
arch = any
license = GPL
- depends = xdg-utils
depends = fzf
+ depends = xdg-utils
source = https://github.com/danehobrecht/fzd/archive/refs/tags/1.0.1.tar.gz
sha256sums = 568f72aa7321f117bfe718645ca1bad475894acc34c219ac0cbd583fc368a19d
diff --git a/PKGBUILD b/PKGBUILD
index 59a65e90b159..d97e9f4e94ce 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -12,7 +12,7 @@ source=("https://github.com/danehobrecht/fzd/archive/refs/tags/${pkgver}.tar.gz"
sha256sums=('568f72aa7321f117bfe718645ca1bad475894acc34c219ac0cbd583fc368a19d')
package() {
- install -Dm755 fzd "$pkgdir/usr/bin/fzd"
- install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
- install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
+ mkdir -p "${pkgdir}/usr/bin"
+ cp "${srcdir}/fzd" "${pkgdir}/usr/bin/fzd"
+ chmod +x "${pkgdir}/usr/bin/fzd"
} \ No newline at end of file