PKGBUILDs/community/gtk-rezlooks-engine/PKGBUILD
2009-10-09 21:15:33 -05:00

36 lines
1.8 KiB
Bash

# Maintainer: Javier "Phrodo_00" Aravena <phrodo.00@gmail.com>
pkgname=gtk-rezlooks-engine
pkgver=0.6
pkgrel=8
pkgdesc="Clean looking gtk theme engine based on the cairo-enabled CVS clearlooks engine code."
url="http://www.gnome-look.org/content/show.php?content=39179"
arch=('i686' 'x86_64')
depends=('gtk2' 'cairo')
options=('!libtool')
license=('GPL')
source=(http://www.gnome-look.org/content/files/39179-rezlooks-$pkgver.tar.gz \
http://people.os-zen.net/rezza/themes/Rezlooks-Gilouche.tar.gz \
http://people.os-zen.net/rezza/themes/Rezlooks-graphite.tar.gz \
http://www.gnome-look.org/content/files/40990-Rezlooks-pastelgreen.tar.gz \
http://www.gnome-look.org/content/files/40987-Rezlooks-candy.tar.gz \
http://www.gnome-look.org/content/files/41368-Rezlooks-Orange-0.1.tar.gz \
http://www.origami43.net/ozerfingues/Themes/charamel/Charamel/Rezlooks-charamel.tar.gz)
md5sums=('87b768eb372dd5065f9e36bf10245ac7' '1118c64b7a711b57fcbbbd2ae9b147fa'\
'543cebd02c0a4cecb29d14d8d830dd40' '6b9ea4fa673c17e25c266ba70b9b4cef'\
'bcf8688622821dff91aa3bc4cbb83ef5' '880a02bab34d6a8b97a1d6765fd1314d'\
'4b6571c7f7c7c77873f7373b221626fe')
build() {
cd $startdir/src/rezlooks-$pkgver
./configure --prefix=/usr --enable-animation
make || return 1
make DESTDIR=$startdir/pkg install
mkdir -p $startdir/pkg/usr/share/themes
cp -r $startdir/src/Rezlooks-Gilouche $startdir/pkg/usr/share/themes
cp -r $startdir/src/Rezlooks-graphite $startdir/pkg/usr/share/themes
cp -r $startdir/src/Rezlooks-candy $startdir/pkg/usr/share/themes
cp -r $startdir/src/Rezlooks-pastelgreen $startdir/pkg/usr/share/themes
cp -r $startdir/src/Rezlooks-Orange $startdir/pkg/usr/share/themes
cp -r $startdir/src/Rezlooks-charamel $startdir/pkg/usr/share/themes
}