blob: 63b95174d4b8a5241a7f2ffd52e7307f414f245b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Maintainer: sineptic <sineptic0@gmail.com>
pkgsubn=vimium
pkgname=hdrop-git
pkgver=0.4.7.9cd5a1c
pkgrel=1
pkgdesc="Emulate 'tdrop' in Hyprland (run, show and hide programs via keybind - similar to a dropdown terminal)"
url="https://github.com/Schweber/hdrop"
license=('AGPL-3.0')
provides=(hdrop)
arch=('any')
depends=(
libnotify
jq
bash
awk
hyprland
)
makedepends=(
git
make
)
package() {
git clone $url
cd hdrop
make all && sudo make install
}
|