mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
31 lines
958 B
Bash
31 lines
958 B
Bash
# KDEPlasma 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-yawp
|
|
pkgver=0.4.1
|
|
pkgrel=1
|
|
pkgdesc="A Colorful Kdeplasma weather plasmoid"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.kde-look.org/content/show.php/yaWP+(Yet+Another+Weather+Plasmoid)?content=94106"
|
|
depends=('kde-workspace' 'gettext')
|
|
makedepends=('cmake' 'make' 'automoc4' 'patch')
|
|
conflicts=(kde-extragear-plasmoids)
|
|
install=$pkgname.install
|
|
source=(http://downloads.sourceforge.net/yawp/yawp-$pkgver.tar.bz2)
|
|
license=('GPL')
|
|
md5sums=('bb0fd5d8f197dbe6a69b081b677ef710')
|
|
|
|
build() {
|
|
cd $srcdir/yawp-$pkgver
|
|
mkdir build
|
|
cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` ..
|
|
make VERBOSE=1
|
|
make DESTDIR=$pkgdir install
|
|
}
|