blob: aa6676695693af2837da1721accaef344feea95f (
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
|
# Maintainer: Mark Wagie <mark dot wagie at proton dot me>
# Contributor: Mohammadreza Abdollahzadeh <morealaz at gmail dot com>
# Contributor: Edgard Castro <castro@edgard.org>
# Contributor: Frederic Bezies <fredbezies at gmail dot com>
# Contributor: FadeMind <fademind@gmail.com>
# Contributor: Icaro Perseo <icaroperseo[at]protonmail[dot]com>
# Contributor: Lucas SaliƩs Brum <lucas@archlinux.com.br>
pkgname=('papirus-icon-theme-git' 'epapirus-icon-theme-git')
pkgbase=papirus-icon-theme-git
pkgver=20231201.r7.ga510018dad
pkgrel=1
epoch=1
pkgdesc="Pixel perfect icon theme for Linux"
arch=('any')
url="https://github.com/PapirusDevelopmentTeam/papirus-icon-theme"
license=('GPL-3.0-or-later')
depends=('gtk-update-icon-cache')
makedepends=('git')
options=('!strip')
source=('git+https://github.com/PapirusDevelopmentTeam/papirus-icon-theme.git')
sha256sums=('SKIP')
pkgver() {
cd "${pkgbase%-git}"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
package_papirus-icon-theme-git() {
optdepends=('hardcode-fixer-git: To deal with hardcoded application icons'
'hardcode-tray-git: To fix hardcoded tray icons'
'sif-git: To fix icons of running Steam games')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
install='alt-icons.install'
cd "${pkgbase%-git}"
make DESTDIR="$pkgdir" ICON_THEMES="Papirus Papirus-Dark Papirus-Light" install
}
package_epapirus-icon-theme-git() {
pkgdesc+=" (for elementary OS and Pantheon Desktop only)"
depends+=('papirus-icon-theme-git')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
cd "${pkgbase%-git}"
make DESTDIR="$pkgdir" ICON_THEMES="ePapirus ePapirus-Dark" install
}
|