blob: 54abf11683046cd0d2cc9944d8d98b39dbd7ea78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: MD Gaziur Rahman Noor <mdgaziurrahmannoor@gmail.com>
pkgname=findex-bin
pkgver=0.8.3
pkgrel=1
pkgdesc="Highly customizable application finder with high performance. Written in Rust and uses GTK"
url="https://github.com/mdgaziur/findex"
license=("GPL3")
arch=("x86_64")
provides=("findex")
conflicts=("findex")
source=("https://github.com/mdgaziur/findex/releases/download/v$pkgver/findex-$pkgver-x86_64.tar.gz")
sha256sums=('fa85b589b128d2508e1b1edabb84fb217b18ce101749e709a9b77afd9467960b')
install=post_install.install
depends=("gtk3" "libkeybinder3")
package() {
cd "$srcdir/findex-$pkgver-x86_64"
install -Dm755 findex -t "$pkgdir/usr/bin"
install -Dm755 findex-daemon -t "$pkgdir/usr/bin"
mkdir -p "$pkgdir/opt/findex"
cp style.css "$pkgdir/opt/findex"
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/findex/LICENSE"
}
|