diff options
author | Luca Weiss <luca@z3ntu.xyz> | 2019-09-07 18:19:39 +0200 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-09-08 06:07:12 -0300 |
commit | 40f3d445590cfecdac4ab78543457d8892f36355 (patch) | |
tree | 341053174fb34961e2b4f814d9419a535ce01552 /testing | |
parent | c831d06298db806426065d72305852a2a2d898ea (diff) | |
download | aports-40f3d445590cfecdac4ab78543457d8892f36355.tar.bz2 aports-40f3d445590cfecdac4ab78543457d8892f36355.tar.xz |
testing/gnome-menus: new aport
Diffstat (limited to 'testing')
-rw-r--r-- | testing/gnome-menus/APKBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/gnome-menus/APKBUILD b/testing/gnome-menus/APKBUILD new file mode 100644 index 0000000000..1650b09832 --- /dev/null +++ b/testing/gnome-menus/APKBUILD @@ -0,0 +1,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" |