mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-26 15:02:12 +08:00
32 lines
1010 B
Bash
32 lines
1010 B
Bash
#
|
|
# Apps 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
|
|
|
|
pkgname=kdeplasma-applets-cwp
|
|
pkgver=1.5.8
|
|
pkgrel=1
|
|
pkgdesc="cwp, a kdeplasma weather plasmoid with lots of customization"
|
|
arch=('i686' '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')
|
|
install=customizable-weather-plasmoid.install
|
|
source=(http://www.kde-look.org/CONTENT/content-files/98925-cwp-$pkgver.tar.bz2)
|
|
md5sums=('12c609a979d098039845505851138b39')
|
|
build() {
|
|
cd $srcdir/cwp-$pkgver/
|
|
mkdir build
|
|
cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` ..
|
|
make
|
|
make DESTDIR=$pkgdir install
|
|
}
|