2020-06-11 15:57:03 -05:00
|
|
|
# Maintainer: Eric Lay <ericlaytm@gmail.com>
|
2023-03-29 10:04:06 -05:00
|
|
|
# Contributor: Yochananmarqos
|
2020-06-11 15:57:03 -05:00
|
|
|
pkgname=fuzzy-pkg-finder
|
2023-11-19 13:13:20 -06:00
|
|
|
pkgver=1.2
|
2020-06-14 06:16:43 -05:00
|
|
|
pkgrel=1
|
2020-06-11 15:57:03 -05:00
|
|
|
pkgdesc="Simple cli command for using fzf to search and install packages"
|
2020-07-30 13:51:50 -05:00
|
|
|
arch=('x86_64' 'aarch64' 'armv7h')
|
2020-06-11 16:12:40 -05:00
|
|
|
url="https://github.com/ericlay/$pkgname"
|
2020-06-28 09:57:35 -05:00
|
|
|
license=('GPL3')
|
2020-06-11 15:57:03 -05:00
|
|
|
depends=('pacman'
|
2020-06-24 09:43:30 -05:00
|
|
|
'fzf'
|
2023-03-29 10:04:06 -05:00
|
|
|
'expac'
|
|
|
|
'curl'
|
|
|
|
'gzip'
|
|
|
|
'jq')
|
2020-06-11 15:57:03 -05:00
|
|
|
makedepends=('git')
|
2021-07-27 14:18:36 -05:00
|
|
|
optdepends=('yay: AUR helper'
|
|
|
|
'paru: AUR helper')
|
2023-03-29 12:01:56 -05:00
|
|
|
source=("git+https://github.com/ericlay/fuzzy-pkg-finder.git#tag=v$pkgver")
|
2020-06-11 15:57:03 -05:00
|
|
|
md5sums=('SKIP')
|
|
|
|
|
|
|
|
package() {
|
2020-06-24 09:43:30 -05:00
|
|
|
cd "$srcdir/$pkgname"
|
|
|
|
install -Dm755 fpf -t "$pkgdir/usr/bin"
|
2020-06-11 15:57:03 -05:00
|
|
|
}
|