blob: c4ef4f490e4aba1b2b32074e4476ab1951ecbc0e (
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
|
# Description: gtk engines
# URL: http://www.xfce-look.org/content/show.php/Aurora+Gtk+Engine?content=56438
# Maintainer: tyrry33 at gmail dot com
# Packager: tyrry33 at gmail dot com
# Depends on: gtk
name=aurora
version=1.5.1
release=1
source=(http://gnome-look.org/CONTENT/content-files/56438-aurora-$version.tar.bz2 \
http://www.gnome-look.org/CONTENT/content-files/80431-aurorasmooth.tar.bz2)
build() {
tar zxf aurora-gtk-engine-1.5.tar.gz
cd aurora-1.5
./configure --prefix=/usr --enable-animation
make
make DESTDIR=$PKG install
install -d $PKG/usr/share/themes
cd $PKG/usr/share/themes
tar jxf $SRC/Aurora.tar.bz2
cp -r $SRC/AuroraSmooth ./
chmod 644 Aurora*/*/gtkrc
}
|