mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
30 lines
863 B
Bash
30 lines
863 B
Bash
# Maintainer: Francesco Marinucci <franzmari[at]chakra-project[dot]it>
|
|
|
|
pkgname=kdeplasma-applets-cwp
|
|
pkgver=1.12.0
|
|
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')
|
|
categories=('accessories')
|
|
screenshot=('http://kde-apps.org/CONTENT/content-pre1/98925-1.png')
|
|
install='customizable-weather-plasmoid.install'
|
|
source=("http://www.kde-apps.org/CONTENT/content-files/98925-cwp-$pkgver.tar.bz2")
|
|
md5sums=('b05d9dec29a73629ae7fb07ac718bc2b')
|
|
|
|
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
|
|
}
|