blob: 51b54b93097bb1d1bc7de66f466bfdf3b9fac94e (
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
|
# Maintainer (Arch): Limao Luo <luolimao+AUR@gmail.com>
# Contributor (Arch): flan_suse
#
# This suite contains the following:
# * xfwm4 theme
# * xfwm4 compact theme
# * metacity theme
# * emerald theme
# * gtk2 theme
# * gtk2 theme (classic)
# * gtk3 theme
# * gtk3 theme (classic)
# * unity theme
# * xfce4-notify theme
# * lightdm theme
# * wallpaper (found in the shimmer-wallpapers package; optdepends)
pkgname=xfce-theme-greybird
_pkgname=Greybird
pkgver=1.3.1
_pkgverclassic=0.9
pkgrel=1
pkgdesc="A grey and blue Xfce theme, used by default in Xubuntu 12.04; includes the classic low saturation theme"
arch=(any)
url=http://shimmerproject.org/projects/greybird/
license=(CCPL:by-sa-3.0 GPL)
groups=(xfce-themes-shimmer-collection)
depends=(gtk-engine-murrine)
optdepends=('elementary-xfce-icons: matching icon set; use the dark icon theme'
'gtk-engine-unico: required for gtk3 support for the classic theme; not required for the current theme'
'gtk3: required for CSS/GTK3 theme'
'lightdm-gtk-greeter: required for the LightDM GTK theme'
'lightdm-unity-greeter: required for the LightDM Unity theme'
'shimmer-wallpapers: contains the Greybird wallpaper, among others')
conflicts=($pkgname-git)
source=($pkgname-$pkgver.tar.gz::https://github.com/shimmerproject/$_pkgname/archive/v$pkgver.tar.gz
$pkgname-$_pkgverclassic.tar.gz::https://github.com/shimmerproject/$_pkgname/archive/v$_pkgverclassic.tar.gz)
sha256sums=('f25f402878a3f91740291934cbb1ec5d91cb9504e5ee94ddad5cfc66dd59ed44'
'661f81347fe227bc3dc7ae40ee0e9bf1c96b478fab7283416a8569379a0aec4f')
sha512sums=('cf85da68a15dca0f9ce13af46407a3cc4a77d0388e0ef760a0c24eacb56f544f409134a72986d42aafdf1786b4a5d1645f2ce2f1d56c9fbdbb5d5f85fd015416'
'599fa02ea6eeb6f805c06f7e57ea86d6b620a28a24c5439b0a826439e04a7ac245a95c86c8ee5a4550c070308174564a427dd80fa8538c90e1439b9f697e17c4')
package() {
local _themedir="$pkgdir/usr/share/themes"
install -d "$_themedir/$_pkgname "{Classic,Compact}
cp -rf $_pkgname-$pkgver/ "$_themedir"/$_pkgname/
rm "$_themedir"/$_pkgname/.gitignore
cp -rf $_pkgname-$_pkgverclassic/gtk-{2,3}.0 "$_themedir/$_pkgname Classic"
ln -s /usr/share/themes/$_pkgname/xfwm4_compact "$_themedir/$_pkgname Compact/xfwm4"
}
|