blob: f81c0545b059520bcde6b95c39a53f24b869cffb (
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
|
# Maintainer: Vojtěch Sajdl <vojtech@sajdl.com>
# Contributor: liolok <aur@liolok.com>
_name="middleclickclose"
_uuid="middleclickclose@paolo.tranquilli.gmail.com"
pkgname="gnome-shell-extension-${_name}"
pkgver=31
pkgrel=1
pkgdesc='Gnome shell extension for closing apps in overview with a middle click'
arch=('any')
url="https://github.com/p91paul/middleclickclose"
license=('GPL2')
depends=("gnome-shell")
source=("${url}/archive/v${pkgver}.tar.gz")
sha256sums=('281cb86e55bdcf63c9cae5442c1d9ed73a86ae2a1144efaf595c61e5658f4212')
conflicts=('gnome-shell-extension-middleclickclose-git')
package() {
local _source="${_name}-${pkgver}/src"
local _target="${pkgdir}/usr/share/gnome-shell/extensions/${_uuid}"
mkdir --parents ${_target}
cp --archive --recursive ${_source}/* --target-directory=${_target}
glib-compile-schemas ${_target}/schemas
}
|