summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7dd081e02cc577a6fb7473d804fe10462d9afaf0 (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: Mohammadreza Abdollahzadeh < morealaz at gmail dot com >

pkgname=gnome-shell-extension-arc-menu-git
pkgver=34.1.dev.r11.g9d3d9d4
pkgrel=1
pkgdesc='A GNOME shell extension designed to replace the standard menu found in GNOME 3.'
arch=(any)
url="https://gitlab.com/LinxGem33/Arc-Menu"
license=('GPL2')
depends=('gnome-shell>=3.18' 'gnome-menus')
makedepends=('git')
install='gnome-shell-extension.install'
source=("git+${url}.git")
sha256sums=('SKIP')

pkgver() {
  cd Arc-Menu
  git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

package() {
  cd Arc-Menu
  make DESTDIR="$pkgdir" INSTALL="system" install
}
# vim:set ts=2 sw=2 et: