added first PKGBUILD

This commit is contained in:
Eric Lay 2020-06-11 15:57:03 -05:00
parent 3108cb172d
commit 0cb8fcd03e
2 changed files with 24 additions and 1 deletions

22
PKGBUILD Normal file
View File

@ -0,0 +1,22 @@
# Maintainer: Eric Lay <ericlaytm@gmail.com>
pkgname=fuzzy-pkg-finder
pkgver=0.1
pkgrel=1
pkgdesc="Simple cli command for using fzf to search and install packages"
arch=(any)
url="https://gitlab.com/airclay/$pkgname"
license=('GPL')
depends=('pacman'
'yay'
'fzf')
makedepends=('git')
#install= TODO add post install script to sync pacman file database.
source=("git://gitlab.com/airclay/$pkgname")
md5sums=('SKIP')
package() {
cd "$srcdir"
install -dm755 $pkgdir/usr/bin
cp -r $scrdir/$pkgname/bin $pkgdir/usr
chmod a+x $pkgdir/usr/bin/*
}

View File

@ -1,5 +1,6 @@
# fuzzy-pkg-finder
**Simple cli command for using fzf to search and install packages.**\
Performs live search by package name and presents full package information.\
Performs live search by package name and presents package information including file list in preview pane.\
\
*For use with Pacman or Yay package managers only.*