blob: 9021a2c43a65bfe699960504c4d6f97dea02df19 (
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
31
32
33
|
# Contributor: Clayton Craft <clayton@craftyguy.net>
# Maintainer: Clayton Craft <clayton@craftyguy.net>
pkgname=xapp
pkgver=2.4.3
pkgrel=0
pkgdesc="Components which are common to X-Apps"
arch="all"
url="https://github.com/linuxmint/xapp"
license="LGPL-3.0-only"
makedepends="
gobject-introspection-dev
libdbusmenu-gtk3-dev
libgnomekbd-dev
meson
py3-gobject3
py3-gobject3-dev
vala"
source="https://github.com/linuxmint/xapp/archive/$pkgver/xapp-$pkgver.tar.gz"
options="!check" # no tests
subpackages="$pkgname-dev $pkgname-lang"
build() {
abuild-meson . output
meson compile -C output
}
package() {
DESTDIR="$pkgdir" meson install --no-rebuild -C output
}
sha512sums="
ecfe97b5a6de6ef06416b3220dc30856c590087c22b77ba2078194995650966e7811a91b3ce6335b363ea5066473d5c59a318232e40a2311341067dcee4719b2 xapp-2.4.3.tar.gz
"
|