desktop/kde-plasma-themes/PKGBUILD
2012-02-05 05:38:58 +00:00

71 lines
2.1 KiB
Bash

#
# Chakra Packages for Chakra, part of chakra-project.org
#
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
# include global config
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgbase="kde-plasma-themes"
pkgname=("kde-plasma-themes-neda"
"kde-plasma-themes-kneda"
"kde-plasma-themes-ronak")
pkgver=1.0
pkgrel=1
arch=('any')
source=('http://chakra-linux.org/sources/neda/Neda-1.8.3.2.tar.gz'
'http://chakra-linux.org/sources/kneda/Kneda-0.6.4.tar.gz'
'http://chakra-linux.org/sources/ronak/Ronak-plasma-1.0.tar.xz')
md5sums=('0be3b8f65318e4147cbc1720fb772463'
'149b1ace8fa3d2d7f981bc6841749f83'
'494fa2fd85ff7b812f37cec7c6fcff55')
package_kde-plasma-themes-neda() {
pkgver=1.8.3.2
pkgrel=1
pkgdesc="Chakra NEDA Plasma theme"
url="http://www.chakra-project.org"
license=('GPL')
replaces=('kde-plasma-themes-kneda')
mkdir -p $pkgdir/usr/share/apps/desktoptheme
cd $startdir/src
cp -R Neda $pkgdir/usr/share/apps/desktoptheme
# fix file rights
chmod 755 -R $pkgdir/usr/share/apps/desktoptheme
# remove nasty files
find $pkgdir/ -name ".directory" -type f -exec rm -fr {} +
}
package_kde-plasma-themes-kneda() {
pkgver=0.6.4
pkgrel=1
pkgdesc="Chakra KNEDA Plasma theme"
url="http://www.chakra-project.org"
license=('GPL')
mkdir -p $pkgdir/usr/share/apps/desktoptheme
cd $startdir/src
cp -R Kneda $pkgdir/usr/share/apps/desktoptheme
# fix file rights
chmod 755 -R $pkgdir/usr/share/apps/desktoptheme
# remove nasty files
find $pkgdir/ -name ".directory" -type f -exec rm -fr {} +
}
package_kde-plasma-themes-ronak() {
pkgver=1.0
pkgrel=1
pkgdesc="Chakra Ronak Plasma theme"
url="http://www.chakra-project.org"
license=('GPL')
replaces=('kde-plasma-themes-kneda' 'kde-plasma-themes-neda')
mkdir -p $pkgdir/usr/share/apps/desktoptheme
cd $startdir/src
cp -R Ronak $pkgdir/usr/share/apps/desktoptheme
# fix file rights
chmod 755 -R $pkgdir/usr/share/apps/desktoptheme
# remove nasty files
find $pkgdir/ -name ".directory" -type f -exec rm -fr {} +
}