fuzzy-pkg-finder/PKGBUILD

23 lines
590 B
Bash
Raw Normal View History

2020-06-11 15:57:03 -05:00
# Maintainer: Eric Lay <ericlaytm@gmail.com>
pkgname=fuzzy-pkg-finder
2021-07-16 16:13:13 -05:00
pkgver=0.9.5
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'
'wget')
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')
2020-07-29 21:35:36 -05:00
source=("git+https://gitlab.com/airclay/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"
2021-07-16 16:36:24 -05:00
install -Dm755 fpff -t "$pkgdir/usr/bin"
2020-06-11 15:57:03 -05:00
}