2010-10-17 06:14:00 +08:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
2011-03-12 05:36:42 +08:00
|
|
|
pkgbase="kde-plasma-themes"
|
|
|
|
pkgname=("kde-plasma-themes-neda"
|
2012-02-09 02:19:42 +08:00
|
|
|
"kde-plasma-themes-ronak")
|
2011-03-12 05:36:42 +08:00
|
|
|
pkgver=1.0
|
|
|
|
pkgrel=1
|
|
|
|
arch=('any')
|
2010-10-17 06:14:00 +08:00
|
|
|
|
2012-01-10 16:43:29 +08:00
|
|
|
source=('http://chakra-linux.org/sources/neda/Neda-1.8.3.2.tar.gz'
|
2012-02-09 02:19:42 +08:00
|
|
|
'http://chakra-linux.org/sources/ronak/ronak-plasma-1.0.tar.gz')
|
2012-01-10 16:43:29 +08:00
|
|
|
md5sums=('0be3b8f65318e4147cbc1720fb772463'
|
2012-02-09 02:19:42 +08:00
|
|
|
'83537e8480609ea7142f036e7ca37752')
|
2010-10-17 06:14:00 +08:00
|
|
|
|
2011-03-12 05:36:42 +08:00
|
|
|
package_kde-plasma-themes-neda() {
|
2012-01-10 16:43:29 +08:00
|
|
|
pkgver=1.8.3.2
|
2010-10-17 06:14:00 +08:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="Chakra NEDA Plasma theme"
|
|
|
|
url="http://www.chakra-project.org"
|
|
|
|
license=('GPL')
|
2011-07-03 19:40:03 +08:00
|
|
|
replaces=('kde-plasma-themes-kneda')
|
2011-03-12 05:36:42 +08:00
|
|
|
mkdir -p $pkgdir/usr/share/apps/desktoptheme
|
2011-07-03 19:40:03 +08:00
|
|
|
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 {} +
|
2011-03-12 05:36:42 +08:00
|
|
|
}
|
2010-10-17 06:14:00 +08:00
|
|
|
|
2012-02-05 13:31:05 +08:00
|
|
|
package_kde-plasma-themes-ronak() {
|
|
|
|
pkgver=1.0
|
|
|
|
pkgrel=1
|
2012-02-09 02:19:42 +08:00
|
|
|
pkgdesc="Chakra RONAK Plasma theme"
|
2012-02-05 13:31:05 +08:00
|
|
|
url="http://www.chakra-project.org"
|
|
|
|
license=('GPL')
|
2012-02-09 02:19:42 +08:00
|
|
|
mkdir -p $pkgdir/usr/share/apps/desktoptheme/RONAK
|
|
|
|
cd $startdir/src/ronak-plasma
|
|
|
|
cp -R * $pkgdir/usr/share/apps/desktoptheme/RONAK
|
2012-02-05 13:31:05 +08:00
|
|
|
# fix file rights
|
|
|
|
chmod 755 -R $pkgdir/usr/share/apps/desktoptheme
|
|
|
|
# remove nasty files
|
|
|
|
find $pkgdir/ -name ".directory" -type f -exec rm -fr {} +
|
2012-02-09 02:19:42 +08:00
|
|
|
}
|