blob: 9b2571cc4736f4b8c01397a371f20a35fe8f1baf (
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-messages"
pkgver="24.5.0"
pkgrel="1"
pkgdesc="Ayatana Indicator that collects messages that need a response"
arch=("i686" "x86_64" "pentium4")
url="https://github.com/AyatanaIndicators/ayatana-indicator-messages"
license=("GPL-3.0-or-later")
makedepends=("cmake-extras" "gobject-introspection" "gtk-doc" "intltool" "vala" "systemd" "glib2-devel")
depends=("accountsservice" "hicolor-icon-theme" "dconf" "glib2" "glibc")
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/AyatanaIndicators/${pkgname}/archive/${pkgver}.tar.gz")
md5sums=("9157cb99cba63e5335e35117e6651bef")
provides=("indicator-messages")
conflicts=("indicator-messages")
build()
{
cd ${pkgname}-${pkgver}
cmake -S . -B build -DCMAKE_INSTALL_LIBEXECDIR='lib'
cmake --build build
}
package()
{
cd ${pkgname}-${pkgver}
DESTDIR="${pkgdir}" cmake --install build
}
|