blob: 3db6a35d0201e2b4372d130700691a88e8aaa67d (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
pkgname=pantheon-applications-menu-git
pkgver=2.4.2.r25.ae95dfb
pkgrel=1
pkgdesc='The Pantheon Application Menu'
arch=(x86_64)
url=https://github.com/elementary/applications-menu
license=(GPL3)
groups=(pantheon-unstable)
depends=(
appstream
gdk-pixbuf2
glib2
gnome-menus
gtk3
json-glib
libgee
libgranite.so
libsoup
libswitchboard-2.0.so
libwingpanel-2.0.so
zeitgeist
)
makedepends=(
git
meson
granite-git
switchboard-git
vala
wingpanel-git
)
provides=(pantheon-applications-menu)
conflicts=(pantheon-applications-menu)
source=(pantheon-applications-menu::git+https://github.com/elementary/applications-menu.git)
sha256sums=(SKIP)
pkgver() {
cd pantheon-applications-menu
git describe --tags | sed 's/-/.r/; s/-g/./'
}
build() {
arch-meson pantheon-applications-menu build \
-D b_pie=false \
-D with-unity=false
ninja -C build
}
package() {
DESTDIR="${pkgdir}" meson install -C build
}
# vim: ts=2 sw=2 et:
|