mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
51 lines
1.5 KiB
Bash
51 lines
1.5 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")
|
|
pkgver=1.0
|
|
pkgrel=1
|
|
arch=('any')
|
|
|
|
source=('http://chakra-project.org/sources/neda/Neda-1.6.5-1.tar.gz'
|
|
'http://chakra-project.org/sources/kneda/Kneda-0.6.4.tar.gz')
|
|
md5sums=('b42e53b244b30a5ba15172d366d79066'
|
|
'149b1ace8fa3d2d7f981bc6841749f83')
|
|
|
|
package_kde-plasma-themes-neda() {
|
|
pkgver=1.6.5
|
|
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 {} +
|
|
} |