blob: fac47ed3bbda8ccf15b91e2982274469390f8554 (
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
28
|
# Maintainer: Robert Tari <robert at tari dot in>
pkgname="ayatana-indicator-keyboard"
pkgver="24.7.0"
pkgrel="1"
pkgdesc="Ayatana Indicator Keyboard Applet"
arch=("i686" "x86_64" "pentium4")
url="https://github.com/AyatanaIndicators/ayatana-indicator-keyboard"
license=("GPL-3.0-or-later")
makedepends=("intltool" "cmake-extras" "systemd")
depends=("libayatana-common" "libxklavier" "hicolor-icon-theme" "accountsservice" "libxkbcommon" "dconf" "libx11" "glib2" "glibc")
optdepends=("matekbd-keyboard-display: Needed for displaying keyboard layouts on MATE" "libgnomekbd: Needed for displaying keyboard layouts on non-MATE")
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/AyatanaIndicators/${pkgname}/archive/${pkgver}.tar.gz")
md5sums=("ce025ff5f336e548d70ae8190d6939b7")
build()
{
cd ${pkgname}-${pkgver}
cmake -S . -B build -DCMAKE_INSTALL_LIBEXECDIR='lib'
cmake --build build
}
package()
{
cd ${pkgname}-${pkgver}
DESTDIR="${pkgdir}" cmake --install build
}
|