blob: 4ba882751aa41970d4caa58b48458836bdd981ff (
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
57
|
# Maintainer: Erik Wallström <erik.wallstrom@live.com>
pkgname=pop-gtk-theme-git
_pkgname=pop-gtk-theme
pkgver=5.3.1.r3.g5ab6f1e4
pkgrel=1
pkgdesc="A GTK+ theme for Pop!_OS"
arch=("any")
url="https://github.com/pop-os/gtk-theme"
license=('GPL2' 'CCPL')
depends=(
"gtk3>=3.18.9"
"gtk2>=2.24.30"
"gdk-pixbuf2>=2.24.30"
"gtk-engine-murrine>=0.98.1"
"glib2"
)
makedepends=(
"meson"
"libsass>=3.3.6"
"sassc>=3.3.2"
"git"
"parallel"
)
optdepends=(
"inkscape"
"optipng"
"gnome-shell"
"gnome-flashback"
"budgie-desktop"
"xfce4-session"
"mate-desktop"
"lxde-common"
"pop-icon-theme-git: Recommended icon theme"
"ttf-fira-sans: Recommended font for window titles and interface"
"ttf-fira-mono: Recommended monospace font"
"ttf-roboto-slab: Recommended font for documents"
)
provides=("${_pkgname}")
conflicts=("${_pkgname}")
source=("git+https://github.com/pop-os/gtk-theme.git")
sha256sums=("SKIP")
pkgver() {
cd "${srcdir}/gtk-theme"
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "${srcdir}/gtk-theme"
arch-meson build
meson compile -C build
}
package() {
cd "${srcdir}/gtk-theme"
DESTDIR="${pkgdir}" meson install -C build
}
|