blob: 1650b098328bcf8ba7064bce597638da212b4b40 (
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: Rasmus Thomsen <oss@cogitri.dev>
pkgname=gnome-menus
pkgver=3.32.0
pkgrel=0
pkgdesc="Library for the Desktop Menu Specification"
arch="all"
url="https://gitlab.gnome.org/GNOME/gnome-menus"
license="GPL-2.0-or-later AND LGPL-2.0-or-later"
makedepends="gobject-introspection intltool glib-dev"
subpackages="$pkgname-dev $pkgname-lang"
source="http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"
options="!check" # No test suite
build() {
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-static
make
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="8a429e092b1e4a1a794473d7cae611684321e797792e1063911ddcbb496140033838b348bc209b4c0566a13233cfa1144cae7a188a483abf34c5af6feb44a884 gnome-menus-3.32.0.tar.xz"
|