blob: c2e54c45d3769b957abcd0e89ef2de5109a26c49 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Maintainer: madmurphy <madmurphy333 AT gmail DOT com>
# Contributor: somepaulo <burafino AT gmail DOT com>
# Contributor: Massimo Branchini <max.bra.gtalk AT gmail DOT com>
_extname='desktop-icons'
_uuid="${_extname}@csoriano"
_pkgname="gnome-shell-extension-${_extname}"
pkgname="${_pkgname}-git"
pkgver='r565.c92bec3'
pkgrel=1
pkgdesc='Add icons to the desktop'
arch=('x86_64' 'i686')
url="https://extensions.gnome.org/extension/1465/${_extname}/"
license=('GPL3')
depends=('gnome-shell')
makedepends=('git' 'meson' 'glib2')
options=('!strip')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
source=("git+https://gitlab.gnome.org/World/ShellExtensions/${_extname}.git")
md5sums=('SKIP')
pkgver() {
cd "${_extname}"
printf "'r%s.%s'" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "${srcdir}"
install -dm755 "${pkgdir}/usr/share/gnome-shell/extensions/${_uuid}"
# taken from export-zip.sh
local _repodir="${srcdir}/${_extname}"
local _build_dir="${_repodir}/builddir"
local _local_prefix="${_repodir}/${_uuid}"
local _extension_dir="${_local_prefix}/share/gnome-shell/extensions/${_uuid}"
local _schemadir="${_local_prefix}/share/glib-2.0/schemas"
meson --prefix="${_local_prefix}" --localedir=locale "${_build_dir}" "${_repodir}"
ninja -C "${_build_dir}" install
cd "${_local_prefix}"
mkdir schemas
cp "${_schemadir}"/*.xml schemas/
glib-compile-schemas schemas/
cp -r "${_extension_dir}"/* .
cp -dpr --no-preserve=ownership {*.js,*.css,*.json,locale,schemas} "${pkgdir}/usr/share/gnome-shell/extensions/${_uuid}"
}
|