mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
84 lines
2.5 KiB
Bash
84 lines
2.5 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas[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-ronak"
|
|
"kde-plasma-themes-caledonia")
|
|
#"kde-plasma-themes-helium")
|
|
pkgver=1.0
|
|
pkgrel=3
|
|
arch=('any')
|
|
|
|
source=('http://chakra-linux.org/sources/caledonia/caledonia-chakra.tar.xz'
|
|
'http://chakra-linux.org/sources/helium/helium-3.0.2.tar.gz')
|
|
md5sums=('90564224e441dfbeb5f58570c488d74b'
|
|
'fe7edaca9b9a11ed123236ada4f6083b')
|
|
|
|
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-ronak() {
|
|
pkgver=1.0
|
|
pkgrel=1
|
|
pkgdesc="Chakra RONAK Plasma theme"
|
|
url="http://www.chakra-project.org"
|
|
license=('GPL')
|
|
mkdir -p $pkgdir/usr/share/apps/desktoptheme/RONAK
|
|
cd $startdir/src/ronak-plasma
|
|
cp -R * $pkgdir/usr/share/apps/desktoptheme/RONAK
|
|
# 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-caledonia() {
|
|
pkgver=1.3
|
|
pkgrel=3
|
|
pkgdesc="Malcer's dark Caledonia Plasma theme with Chakra adjustments"
|
|
url="http://sourceforge.net/projects/caledonia/"
|
|
license=('Creative-Commons-BY-ND')
|
|
mkdir -p $pkgdir/usr/share/apps/desktoptheme/
|
|
cd $srcdir/caledonia-chakra
|
|
cp -R * $pkgdir/usr/share/apps/desktoptheme/
|
|
# fix file rights
|
|
chmod 755 -R $pkgdir/usr/share/apps/desktoptheme/caledonia
|
|
# remove nasty files
|
|
find $pkgdir/ -name ".directory" -type f -exec rm -fr {} +
|
|
}
|
|
|
|
package_kde-plasma-themes-helium() {
|
|
pkgver=3.0.2
|
|
pkgrel=1
|
|
pkgdesc="Mcder's light theme for plasma desktop"
|
|
url="http://kde-look.org/content/show.php/Helium?content=125471"
|
|
license=('Creative-Commons-BY-SA-NC')
|
|
mkdir -p $pkgdir/usr/share/apps/desktoptheme/helium
|
|
cd $srcdir/helium
|
|
cp -R * $pkgdir/usr/share/apps/desktoptheme/helium
|
|
# fix file rights
|
|
chmod 755 -R $pkgdir/usr/share/apps/desktoptheme/helium
|
|
# remove nasty files
|
|
find $pkgdir/ -name ".directory" -type f -exec rm -fr {} +
|
|
}
|