-
-
Save jabashque/32bd56b6e0b537e5afd5ae84d4931e1a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Tim Kersten <tim io41 * com> | |
pkgname=bemenu-dmenu | |
pkgver=1 | |
pkgrel=2 | |
pkgdesc="Symlink for using bemenu (native wayland support) as a drop-in replacement to dmenu" | |
arch=('any') | |
url="https://github.com/Cloudef/bemenu" | |
license=('MIT') | |
depends=('bemenu' 'bash') | |
provides=('dmenu') | |
conflicts=('dmenu') | |
source=( | |
"dmenu" | |
) | |
sha256sums=( | |
'ccf4abd22e0d9a732b78f94b44e0ad30b74ce975bd97ca4bea5b751614dfeff7' | |
) | |
package() { | |
install -d "$pkgdir"/usr/bin | |
cp dmenu "$pkgdir"/usr/bin/dmenu | |
ln -s dmenu "$pkgdir"/usr/bin/dmenu_run | |
} | |
# vim:set ts=2 sw=2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment