blob: 10451865ed58f052e041ddabfd245230e9822b2f (
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
|
# Maintainer: parham < parham at tuta dot io >
pkgname=gnome-shell-extension-arc-menu-git
pkgver=2.r8.g8b101fe
pkgrel=1
pkgdesc="A GNOME shell extension designed to replace the standard menu found in GNOME 3, git version"
arch=(any)
url="https://gitlab.com/arcmenu/ArcMenu"
license=('GPL2')
depends=('gnome-shell>=3.18' 'gnome-menus')
makedepends=('git')
conflicts=('gnome-shell-extension-arc-menu')
install='gnome-shell-extension.install'
source=("git+${url}.git")
sha256sums=('SKIP')
pkgver() {
cd ArcMenu
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
package() {
cd ArcMenu
make DESTDIR="$pkgdir" INSTALL="system" install
}
|