summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b1763c65fb651e822947cd2d6d9a5d15bda58acc (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
# Maintainer: Omnikron13 <joey.sabey@gmx.com>
# Contributor: zach <zach {at} zach-adams {dot} com>
# Contributor: Gordian Edenhofer <gordian.edenhofer[at]yahoo[dot]de

pkgname=gtk-theme-solarc-git
_pkgname=solarc-theme
_pkgauthor=schemar
_gnomeversion=3.32
pkgver=830.f55ce00
pkgrel=1
pkgdesc="A flat theme with transparent elements. Based on the Arc theme: https://github.com/arc-design/arc-theme"
arch=('any')
url="https://github.com/${_pkgauthor}/${_pkgname}"
license=('GPL3')
depends=('gtk3' 'gtk-engine-murrine')
makedepends=('git' 'wget' 'inkscape' 'sassc' 'optipng')
source=("${_pkgname}::git+https://github.com/${_pkgauthor}/${_pkgname}.git")
sha256sums=('SKIP')
conflicts=('gtk-theme-solarc')
provides=('gtk-theme-solarc')

pkgver() {
    cd "${srcdir}/${_pkgname}"
    echo "$(git rev-list --count HEAD).$(git rev-parse --short HEAD)"
}

build() {
    cd "${srcdir}/${_pkgname}"
    ./solarize.sh
    export _arcdir=$(ls | grep "arc-theme-" | tail -1)
    cd "${_arcdir}"
    ./autogen.sh --prefix=/usr --with-gnome-shell=${_gnomeversion}
    make
}

package() {
    cd "${srcdir}/${_pkgname}/${_arcdir}"
    make DESTDIR="${pkgdir}" install
}