updated on Sat Jan 21 04:00:54 UTC 2012
[aur-mirror.git] / wow-themes / PKGBUILD
blob4d20aab5a6f61a0a65f3a6ad27a86035eac3ecfb
1 # Maintainer: Alexander De Sousa <archaur.xandy21@spamgourmet.com>
2 # Contributor: grimi <grimi at poczta dot fm>
4 pkgname=wow-themes
5 pkgver=latest
6 pkgrel=1
7 pkgdesc="Nice looking themes collection for gtk2, metacity, xfwm4 and openbox."
8 arch=('any')
9 url="http://gnome-look.org/content/show.php/WoW?content=125065"
10 license=('GPL')
11 optdepends=('gtk-engines: gtk themes'
12             'gtk-engine-murrine: gtk themes'
13             'metacity: metacity themes'
14             'xfwm4: xfwm4 themes'
15             'openbox: openbox themes')
16 source=(http://gnome-look.org/CONTENT/content-files/125065-WoW-Latest.zip)
17 md5sums=('dbdcc6f010884e73cbc490fb8806e9fd')
18 sha1sums=('addc6ba57ccb6a205537b15515f960211ec4a26f')
20 build() {
21         cd "$srcdir"
23         msg2 "Decompressing inner archives..."
24         find *.tar.gz -exec tar xf '{}' \;
28 package() {
29         cd "$srcdir"
30         install -d "$pkgdir"/usr/share/themes
32         msg2 "Copying themes..."
33         for f in *; do
34                 [ -d "$f" ] && cp -r "$f" "$pkgdir"/usr/share/themes
35         done
37         msg2 "Adjusting permissions..."
38         find "$pkgdir" -type f -exec chmod 644 '{}' \; 
41 # vim: set ft=sh ts=3 sw=3 tw=0: