mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
36 lines
1.3 KiB
Bash
36 lines
1.3 KiB
Bash
#
|
|
# Part of chakra-project.org
|
|
#
|
|
# Maintainer: Francesco Marinucci <franzmari[at]chakra-project[dot]it>
|
|
|
|
|
|
pkgname=kde-plasma-themes-diamond
|
|
pkgver=2.0.3
|
|
pkgrel=1
|
|
pkgdesc="Transparent theme for KDE 4.x"
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
url="http://kde-look.org/content/show.php/Diamond?content=153930"
|
|
depends=('kdebase-workspace')
|
|
provides=('plasma-theme-diamond')
|
|
replaces=('plasma-theme-diamond')
|
|
conflicts=('plasma-theme-diamond')
|
|
source=("http://kde-look.org/CONTENT/content-files/153930-Diamond.tar.gz"
|
|
"branding.svgz"
|
|
"shutdowndialog.svgz")
|
|
md5sums=('c47cd16b32ae486edb633da45ae66e71'
|
|
'c20ae9336ba1a4a4e346d34027fc1247'
|
|
'6d1caefc6962c5fe8b50f0ce2aa185d7')
|
|
package() {
|
|
mkdir -p ${pkgdir}/usr/share/apps/desktoptheme
|
|
cd ${srcdir}
|
|
cp -R Diamond ${pkgdir}/usr/share/apps/desktoptheme
|
|
chmod 755 -R ${pkgdir}/usr/share/apps/desktoptheme/Diamond
|
|
|
|
# replace with Chakra branding
|
|
rm ${pkgdir}/usr/share/apps/desktoptheme/Diamond/widgets/branding.svgz
|
|
install -Dm644 ${srcdir}/branding.svgz ${pkgdir}/usr/share/apps/desktoptheme/Diamond/widgets/branding.svgz
|
|
rm ${pkgdir}/usr/share/apps/desktoptheme/Diamond/dialogs/shutdowndialog.svgz
|
|
install -Dm644 ${srcdir}/shutdowndialog.svgz ${pkgdir}/usr/share/apps/desktoptheme/Diamond/dialogs/shutdowndialog.svgz
|
|
}
|