fuzzy-pkg-finder/PKGBUILD

22 lines
522 B
Bash
Raw Normal View History

2020-06-11 15:57:03 -05:00
# Maintainer: Eric Lay <ericlaytm@gmail.com>
pkgname=fuzzy-pkg-finder
2020-06-23 16:58:50 -05:00
pkgver=0.8.1
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"
arch=(any)
2020-06-11 16:12:40 -05:00
url="https://github.com/ericlay/$pkgname"
2020-06-11 15:57:03 -05:00
license=('GPL')
depends=('pacman'
2020-06-11 16:12:40 -05:00
'yay'
'fzf')
2020-06-11 15:57:03 -05:00
makedepends=('git')
2020-06-13 17:29:20 -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() {
cd "$srcdir"
install -dm755 $pkgdir/usr/bin
2020-06-13 17:43:43 -05:00
cp -r $srcdir/$pkgname/fpf $pkgdir/usr/bin/
2020-06-11 15:57:03 -05:00
chmod a+x $pkgdir/usr/bin/*
}