-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPKGBUILD
More file actions
24 lines (23 loc) · 934 Bytes
/
Copy pathPKGBUILD
File metadata and controls
24 lines (23 loc) · 934 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Maintainer: Roberto Gogoni <robertogogoni@outlook.com>
pkgname=wayland-cedilla-fix
pkgver=1.1.0
pkgrel=1
pkgdesc="Fix cedilla (ç) on Wayland compositors — makes ' + c produce ç instead of ć"
arch=('any')
url="https://github.com/robertogogoni/wayland-cedilla-fix"
license=('MIT')
depends=('bash' 'xkeyboard-config')
optdepends=(
'fcitx5: full input method support (recommended)'
'fcitx5-gtk: GTK integration for fcitx5'
'fcitx5-qt: Qt integration for fcitx5'
'libxkbcommon: live Compose table verification (xkbcli)'
)
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/robertogogoni/${pkgname}/archive/v${pkgver}.tar.gz")
sha256sums=('SKIP')
package() {
cd "${pkgname}-${pkgver}"
install -Dm755 cedilla-fix.sh "${pkgdir}/usr/bin/cedilla-fix"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
}