blob: 8978e478fa6196230108735c9411d86af0c1518b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: ReStranger
pkgname=xterm-alacritty-smooth-cursor-symlink
pkgver=1
pkgrel=2
pkgdesc="symlink to alacritty-smooth-cursor from xterm with fix for wayland, required by gtk-launch for terminal applications"
arch=("any")
license=('GPL')
depends=("alacritty-smooth-cursor-git")
provides=("xterm")
conflicts=("xterm")
source=("xterm")
sha256sums=("ba9ec35834b73ab2ed6f86bab0091ff0f6cf54070d7b94af62693e9ce4cb6b92")
package() {
mkdir -p "$pkgdir"/usr/bin
install -Dm777 "$srcdir"/xterm \
"$pkgdir"/usr/bin/xterm
}
|