Improve PKGBUILD #1
11
PKGBUILD
11
PKGBUILD
|
@ -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"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue