1 # Contributor: 3ED <krzysztof1987@gmail.com>
3 pkgname=gtk2-theme-neutronium
6 pkgdesc="Neutronium is dark and beautyful theme for gnome/gtk2"
8 url="http://www.gnome-look.org/content/show.php/Neutronium+Unity?content=59189"
10 groups=('gtk2-themes')
13 source=("http://www.gnome-look.org/CONTENT/content-files/59189-Neutronium%20Gilouche.tar.gz" \
14 "Neutronium-Sharp.tar.gz" \
15 "Neutronium-Rounded.tar.gz" \
16 "Neutronium-png.tar.gz")
17 md5sums=('17be41082ffe162435a0a0f1b9573646' \
18 '8f95f242bbca03900b266381e2f693c8' \
19 'ddccfa04a777a24a5195208236e33ba9' \
20 'c8cb05e2fe881e8e54532346bff49ab4')
23 mkdir -pv "$startdir/pkg/usr/share/themes"
24 mkdir -pv "$startdir/pkg/usr/share/pixmaps"
26 cd "$startdir/pkg/usr/share/themes"
27 tar -xvf "$startdir/src/Neutronium Gilouche/Neutronium Gilouche.tar.gz" # 1
28 mv -v "$startdir/src/Neutronium-Sharp" . # 2
29 mv -v "$startdir/src/Neutronium-Rounded" . # 3
30 [ "$(ls -1|wc -l)" == "3" ] || return 1 # test
32 cd "$startdir/pkg/usr/share/pixmaps"
33 mv -v "$startdir/src/neutronium" . # 1
34 [ "$(ls -1|wc -l)" == "1" ] || return 1 # test
36 cd "$startdir/pkg/usr/share"
37 chown -R root:root ./ || return 1
38 chmod -R 644 ./ || return 1
39 chmod -R a+X ./ || return 1
42 # vim:set ts=2 sw=2 et: