blob: 30e16d8d813771e13f2ea8587482993f3c19e0d5 (
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
|
# Maintainer: Misaka13514 <Misaka13514 at gmail dot com>
# Contributor: Kaizhao Zhang <zhangkaizhao@gmail.com>
# Contributor: Nico <d3sox at protonmail dot com>
pkgname=whitesur-icon-theme
_pkgname=WhiteSur-icon-theme
pkgver=2024.09.07
_pkgver="${pkgver//./-}"
pkgrel=1
pkgdesc="MacOS Big Sur like icon theme for linux desktops"
arch=('any')
makedepends=('gtk-update-icon-cache')
optdepends=(
'whitesur-gtk-theme: Recommended GTK theme'
'whitesur-kde-theme: Recommended KDE theme'
'whitesur-cursor-theme: Recommended cursor theme'
)
conflicts=("${pkgname}-git")
license=('GPL-3.0-only')
url="https://github.com/vinceliuice/WhiteSur-icon-theme"
options=('!strip')
source=("${_pkgname}-${_pkgver}.tar.gz"::"${url}/archive/${_pkgver}.tar.gz")
sha256sums=('4c964edba1f920098a79343a2d3453bf3a70d9d89ade6e37b772643234b60994')
package() {
cd "${srcdir}/${_pkgname}-${_pkgver}"
install -dm755 "${pkgdir}/usr/share/icons"
./install.sh -d "${pkgdir}/usr/share/icons"
}
|