blob: 9e027b4e656265b1542ecc1d3c44ec6116371815 (
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
|
# Maintainer: Robert Tari <robert at tari dot in>
pkgname="libayatana-common"
pkgver="0.9.10"
pkgrel="1"
pkgdesc="Ayatana System Indicators' common API functions"
arch=("i686" "x86_64" "pentium4")
url="https://github.com/AyatanaIndicators/libayatana-common"
license=("GPL-3.0-or-later")
makedepends=("cmake" "cmake-extras" "vala" "gobject-introspection" "intltool")
depends=("dconf" "zenity" "glibc" "glib2")
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/AyatanaIndicators/$pkgname/archive/$pkgver.tar.gz")
md5sums=("c2d55bad8c3c902cd01b6be842141498")
build()
{
cd ${pkgname}-${pkgver}
cmake -S . -B build
cmake --build build
}
package()
{
cd ${pkgname}-${pkgver}
DESTDIR="${pkgdir}" cmake --install build
}
|