Improve PKGBUILD #1

Merged
yochananmarqos merged 1 commits from patch-1 into master 2020-06-26 14:37:22 -05:00
1 changed files with 5 additions and 6 deletions

View File

@ -3,19 +3,18 @@ pkgname=fuzzy-pkg-finder
pkgver=0.8.1
pkgrel=1
pkgdesc="Simple cli command for using fzf to search and install packages"
arch=(any)
arch=('any')
url="https://github.com/ericlay/$pkgname"
license=('GPL')
depends=('pacman'
'yay'
'fzf')
'fzf'
'wget')
makedepends=('git')
source=("git+https://gitlab.com/airclay/fuzzy-pkg-finder.git#tag=v$pkgver")
md5sums=('SKIP')
package() {
cd "$srcdir"
install -dm755 $pkgdir/usr/bin
cp -r $srcdir/$pkgname/fpf $pkgdir/usr/bin/
chmod a+x $pkgdir/usr/bin/*
cd "$srcdir/$pkgname"
install -Dm755 fpf -t "$pkgdir/usr/bin"
}