mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
28 lines
945 B
Bash
28 lines
945 B
Bash
# KDEPlasma Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=kdeplasma-applets-yawp
|
|
pkgver=0.4.3
|
|
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)
|
|
screenshot=('http://kde-apps.org/content/preview.php?preview=1&id=94106&file1=94106-1.png&file2=94106-2.png&file3=94106-3.png&name=yaWP+%28Yet+Another+Weather+Plasmoid%29')
|
|
install=$pkgname.install
|
|
source=(http://downloads.sourceforge.net/yawp/yawp-$pkgver.tar.bz2)
|
|
license=('GPL')
|
|
md5sums=('02af5ff62c5b05a9db034bae6c5f72c2')
|
|
|
|
build() {
|
|
cd $srcdir/yawp-$pkgver
|
|
mkdir build
|
|
cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` ..
|
|
make VERBOSE=1
|
|
make DESTDIR=$pkgdir install
|
|
}
|