blob: b9db9f834a85c1d1264e1b5c18feddfe6ffc4ce9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: gardenapple <mailbox@appl.garden>
pkgname=bemenu-dmenu-wayland
pkgver=1
pkgrel=2
pkgdesc="Symlink for using bemenu as a drop-in replacement to dmenu-wayland"
arch=('any')
url="https://github.com/Cloudef/bemenu"
license=('LGPL-3.0-or-later')
depends=('bemenu')
provides=('dmenu-wayland')
conflicts=('dmenu-wayland')
package() {
install -d "$pkgdir"/usr/bin
ln -s /usr/bin/bemenu "$pkgdir"/usr/bin/dmenu-wl
ln -s /usr/bin/bemenu-run "$pkgdir"/usr/bin/dmenu-wl_run
}
|