summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 06d5d301ce66886ee27818e80e151536a57be5d8 (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: ValHue <vhuelamo at gmail dot com>
#
# Contributor: ValHue <vhuelamo at gmail dot com>
#
pkgname="mcmojave-circle-icon-theme"
_pkgname="McMojave-circle"
pkgver="2022.02.18"
pkgrel="1"
pkgdesc="MacOSX Mojave like circle icon theme for linux desktops."
arch=('any')
url="https://github.com/vinceliuice/${_pkgname}"
license=('GPL3')
depends=('gtk-update-icon-cache' 'hicolor-icon-theme' 'numix-circle-icon-theme')
optdepends=('mojave-gtk-theme: Recommended GTK theme.')
options=('!strip')

source=("${_pkgname}-${pkgver//./-}.tar.gz::${url}/archive/${pkgver//./-}.tar.gz")
sha256sums=('a6c5aa75ddf6a91f18aaad646a74a3f1b56bbccda6331b6f048f0258a97c49cf')

package() {
    cd "${srcdir}/${_pkgname}-${pkgver//./-}"
    install -m755 -d "${pkgdir}/usr/share/icons"
    ./install.sh  \
        --all \
        --circle \
        --dest "${pkgdir}/usr/share/icons"
}

# vim: set ts=4 sw=4 et syn=sh ft=sh: