forked from ports/contrib
34 lines
952 B
Plaintext
34 lines
952 B
Plaintext
# Description: xcursor themes whiteglass and redglass
|
|
# URL:
|
|
# Maintainer: Han Boetes <han@mijncomputer.nl>
|
|
# Packager: Han Boetes <han@mijncomputer.nl>
|
|
# Depends on: xorg-xcursorgen
|
|
|
|
name=xorg-xcursor-themes
|
|
version=1.0.1
|
|
release=1
|
|
source="
|
|
http://xorg.freedesktop.org/releases/individual/data/xcursor-themes-$version.tar.gz
|
|
http://www.kde-look.org/content/files/19506-pinux's-tux-cursors-theme-0.3-cur.tar.bz2
|
|
http://www.kde-look.org/content/files/14484-Grounation-0.3.tar.bz2
|
|
http://www.kde-look.org/content/files/6550-Jimmac.tar.gz
|
|
"
|
|
|
|
build()
|
|
{
|
|
cd xcursor-themes-$version
|
|
./configure --prefix=/usr
|
|
make
|
|
make install DESTDIR=$PKG
|
|
|
|
install -d $PKG/usr/share/icons/
|
|
cd $SRC/cursors
|
|
cp -R * $PKG/usr/share/icons/
|
|
cd $SRC/Grounation-0.3
|
|
cp -R Grounation* $PKG/usr/share/icons/
|
|
cd $SRC/Jimmac
|
|
cp -R jimmac $PKG/usr/share/icons/
|
|
# ACHOO!
|
|
find $PKG -iname '*gentoo*' |xargs rm -rf
|
|
}
|