mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-29 10:32:13 +08:00
35 lines
964 B
Bash
35 lines
964 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=kdeplasma-applets-cwp
|
|
pkgver=1.6.9
|
|
pkgrel=1
|
|
pkgdesc="cwp, a kdeplasma weather plasmoid with lots of customization"
|
|
arch=('x86_64')
|
|
url="http://www.kde-look.org/content/show.php/Customizable+Weather+Plasmoid?content=98925"
|
|
license=('GPL')
|
|
depends=('kde-workspace')
|
|
makedepends=('make' 'cmake' 'automoc4')
|
|
conflicts=('kde-extragear-plasmoids')
|
|
replaces=('kdeplasma-addons-cwp')
|
|
categories=('accessories')
|
|
screenshot=('http://kde-apps.org/CONTENT/content-pre1/98925-1.png')
|
|
install='customizable-weather-plasmoid.install'
|
|
source=("http://www.kde-look.org/CONTENT/content-files/98925-cwp-$pkgver.tar.bz2")
|
|
md5sums=('420ef7f36c15dc3ff1da19006ba8fe18')
|
|
|
|
build() {
|
|
cd $srcdir/cwp-$pkgver/
|
|
mkdir build
|
|
cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` ..
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/cwp-$pkgver/build
|
|
make DESTDIR=$pkgdir install
|
|
}
|