summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3c6a37190466a0fc59a34c51c3d1b2035fb9aa96 (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
50
51
52
53
54
55
56
57
58
59
60
61
# Maintainer: Pablo Lezaeta <prflr 88 (arro'a) gmail puntocom>
# Contributor: Ner0
# Contributor: Alessio Sergi <asergi at archlinux dot us>

pkgname=xfce-theme-greybird-git
pkgver=3.22.5+3
pkgrel=1
pkgdesc="Desktop theme suite from Xubuntu, with support for Xfce, Metacity and Unity"
arch=('any')
url="https://github.com/shimmerproject/Greybird"
license=('CCPL:by-sa-3.0' 'GPL')
depends=('gtk-engine-murrine')
makedepends=('git')
optdepends=('elementary-xfce-icons: Matching icon set; use the dark icon theme'
            'shimmer-wallpapers: Contains the Greybird wallpaper, among others'
            'lightdm-gtk-greeter: Required for the LightDM GTK theme'
            'lightdm-unity-greeter: Required for the LightDM Unity theme'
	    'lib32-gtk-engine-murrine: Required for 32-bit apps in 64-bit environments')
provides=('xfce-theme-greybird')
conflicts=('xfce-theme-greybird')
options=('!strip')
source=('Greybird::git+https://github.com/shimmerproject/Greybird.git')
#branch=gtk3.20')
md5sums=('SKIP')

pkgver() {
  cd "Greybird"
#  echo $(git describe --always --abbrev=0).r$(git rev-list --count master) | sed 's|-|.|g' | sed 's|v||g'
	echo "$(git describe --long | sed -r 's/-([0-9,a-g,A-G]{7}.*)//' | sed 's/-/+/' | sed 's/v//g' )"
}

package() {
  cd "${srcdir}/Greybird"

  # install emerald theme
  install -d -m 755 "${pkgdir}/usr/share/emerald/themes/Greybird"
  tar zxf Greybird.emerald -C "${pkgdir}/usr/share/emerald/themes/Greybird/"

  # create theme dirs
  install -d -m 755 "${pkgdir}/usr/share/themes/"Greybird{,-compact/xfwm4,-a11y/xfwm4,-bright/xfce-notify-4.0}

  # install compact theme
  install -m 644 "${srcdir}/Greybird/xfwm4-compact/"* "${pkgdir}/usr/share/themes/Greybird-compact/xfwm4/"

  # install accessivility theme
  install -m 644 "${srcdir}/Greybird/xfwm4-a11y/"* "${pkgdir}/usr/share/themes/Greybird-a11y/xfwm4/"

  # install xfce-notify bright
  install -m 644 "${srcdir}/Greybird/xfce-notify-4.0_bright/"* "${pkgdir}/usr/share/themes/Greybird-bright/xfce-notify-4.0/"

  # clean up
  rm -rf {.git,.gitignore,Greybird.emerald,LICENSE.{CC,GPL},README,xfwm4_compact,xfce4_ally,xfce-notify-4.0_bright}

  # install README into docdir
  install -d -m 755 "${pkgdir}/usr/share/doc/${pkgname}/"

  # install theme
  cp -r . "${pkgdir}/usr/share/themes/Greybird/"
  mv "${pkgdir}/usr/share/themes/Greybird/gtk-3.0/README" "${pkgdir}/usr/share/doc/${pkgname}/"
  rm "${pkgdir}/usr/share/themes/Greybird/gtk-3.0/Gemfile"
}