mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
20 lines
811 B
Bash
20 lines
811 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Roman Kyrylych <Roman.Kyrylych@gmail.com>
|
||
|
# Contributor: Alessio 'mOLOk' Bolognino <themolok@gmail.com>
|
||
|
|
||
|
pkgname=xcursor-simpleandsoft
|
||
|
pkgver=0.2
|
||
|
pkgrel=3
|
||
|
pkgdesc="A simple and soft X cursor theme"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.kde-look.org/content/show.php?content=28427"
|
||
|
license=("GPL")
|
||
|
source=(http://www.kde-look.org/CONTENT/content-files/28427-simpleandsoft-$pkgver.tar.gz index.theme)
|
||
|
md5sums=('387ccc524609918c17f1f777f88cfaf3' 'cc733fa4d545b2f888e4734aaab7bd7d')
|
||
|
|
||
|
build() {
|
||
|
mkdir -p $startdir/pkg/usr/share/icons/Simple-and-Soft
|
||
|
cp -R $startdir/src/simpleandsoft/cursors $startdir/pkg/usr/share/icons/Simple-and-Soft/cursors
|
||
|
install -Dm644 $startdir/src/index.theme $startdir/pkg/usr/share/icons/Simple-and-Soft/index.theme
|
||
|
}
|