blob: 6cc7016e76a4fbe40617938c33f5833c05d23d21 (
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=2023.01.08
_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=('GPL3')
url="https://github.com/vinceliuice/WhiteSur-icon-theme"
options=('!strip')
source=("${_pkgname}-${_pkgver}.tar.gz"::"${url}/archive/${_pkgver}.tar.gz")
sha256sums=('8870f427983f8113c6e3ea85ae6b3ae79ada2406f0ec5f3e452b08f47817501b')
package() {
cd "${srcdir}/${_pkgname}-${_pkgver}"
install -dm755 "${pkgdir}/usr/share/icons"
./install.sh -d "${pkgdir}/usr/share/icons"
}
|