blob: df7ede6e3381ad3b6c2d49affd281edef41a04fd (
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
29
30
|
# Maintainer: Robert Tari <robert at tari dot in>
pkgname="ayatana-indicator-messages"
pkgver="21.12.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=("GPL3")
makedepends=("cmake-extras" "glib2" "gobject-introspection" "gtk-doc" "intltool" "vala" "systemd")
depends=("accountsservice" "hicolor-icon-theme" "dconf")
source=("https://github.com/AyatanaIndicators/${pkgname}/archive/${pkgver}.tar.gz")
md5sums=("9170ef6ce1ee08d6f3d04641cc1a9938")
provides=("indicator-messages")
conflicts=("indicator-messages")
build()
{
cd ${pkgname}-${pkgver}
mkdir build
cd build
cmake ..
make
}
package()
{
cd ${pkgname}-${pkgver}/build
make DESTDIR="${pkgdir}" install
}
|