mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
32 lines
1.0 KiB
Bash
32 lines
1.0 KiB
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.3.1
|
|
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=('kdebase-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=('3fb274e3378d10b219ac3c46e807275a')
|
|
build() {
|
|
cd $srcdir/cwp-$pkgver/
|
|
mkdir build
|
|
cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` .. || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|